diff options
author | Colin Smith <colin@pfsense.org> | 2005-07-07 05:40:10 +0000 |
---|---|---|
committer | Colin Smith <colin@pfsense.org> | 2005-07-07 05:40:10 +0000 |
commit | 984a5853eccfe4d78183d4f40f677c3c6add9e7a (patch) | |
tree | 8d26377b75781db7dfcc6586ac0427a01cc3c6ec /etc/inc/pkg-utils.inc | |
parent | 40326f363c78cd4fe93913e22468245ba33f440b (diff) | |
download | pfsense-984a5853eccfe4d78183d4f40f677c3c6add9e7a.zip pfsense-984a5853eccfe4d78183d4f40f677c3c6add9e7a.tar.gz |
Make tar silent.
Diffstat (limited to 'etc/inc/pkg-utils.inc')
-rw-r--r-- | etc/inc/pkg-utils.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/pkg-utils.inc b/etc/inc/pkg-utils.inc index fbfd6de..2a085aa 100644 --- a/etc/inc/pkg-utils.inc +++ b/etc/inc/pkg-utils.inc @@ -272,7 +272,7 @@ function pkg_fetch_recursive($pkgname, $filename, $dependlevel = 0, $base_url = $static_output .= "\n" . str_repeat(" ", $dependlevel * 2) . $pkgname . " "; $fetchto = "/tmp/apkg_" . $pkgname . $pkg_extension; download_file_with_progress_bar($base_url . '/' . $filename, $fetchto); - exec("/usr/bin/tar --fast-read -O -f {$fetchto} -x +CONTENTS", $slaveout); + exec("/usr/bin/tar --fast-read -O -f {$fetchto} -x +CONTENTS 2>&1", $slaveout); $workingdir = preg_grep("/instmp/", $slaveout); $workingdir = $workingdir[0]; $raw_depends_list = array_values(preg_grep("/\@pkgdep/", $slaveout)); |