diff options
author | Colin Smith <colin@pfsense.org> | 2005-04-12 22:20:37 +0000 |
---|---|---|
committer | Colin Smith <colin@pfsense.org> | 2005-04-12 22:20:37 +0000 |
commit | 026638a408a6bcb7ec157f4505467978e83874e5 (patch) | |
tree | 1b50e5f96cf995822c8e99fdcda61c529af05452 | |
parent | e7fb2f76afdb5366a50835e5a35f6d417b6bca55 (diff) | |
download | pfsense-026638a408a6bcb7ec157f4505467978e83874e5.zip pfsense-026638a408a6bcb7ec157f4505467978e83874e5.tar.gz |
Make pkg_add output more verbose to aid in debugging.
-rwxr-xr-x | usr/local/www/guiconfig.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/guiconfig.inc b/usr/local/www/guiconfig.inc index d76bab3..09a7cc7 100755 --- a/usr/local/www/guiconfig.inc +++ b/usr/local/www/guiconfig.inc @@ -591,7 +591,7 @@ function pkg_fetch_recursive($pkgname, $filename, $dependlevel = 0, $base_url = if($is_installed[0] == "") pkg_fetch_recursive($working_depend[0], $depend_filename, $dependlevel + 1); } } - exec("cat {$g['tmp_path']}/y | /usr/sbin/pkg_add {$fetchto}", $pkgaddout); + exec("cat {$g['tmp_path']}/y | /usr/sbin/pkg_add -v {$fetchto}", $pkgaddout); fwrite($fd_log, $pkgname . print_r($pkgaddout, true) . "\n"); return true; } |