diff options
author | Renato Botelho <garga@FreeBSD.org> | 2014-06-03 10:59:32 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2014-06-03 10:59:32 -0300 |
commit | bc29d9fd91e82757b433c9f6a13e56c0bbeaf7c6 (patch) | |
tree | 7ed44b63caaa3414d47dfa24c67393c71f32583b /etc/inc/pkg-utils.inc | |
parent | ee7f5e7abe6cd8c0f484bf694913fe86a4d3eecf (diff) | |
download | pfsense-bc29d9fd91e82757b433c9f6a13e56c0bbeaf7c6.zip pfsense-bc29d9fd91e82757b433c9f6a13e56c0bbeaf7c6.tar.gz |
Reduce possible noise
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 99385f1..e949f2b 100644 --- a/etc/inc/pkg-utils.inc +++ b/etc/inc/pkg-utils.inc @@ -254,7 +254,7 @@ function is_freebsd_pkg_installed($pkg) { if(!$pkg) return; $output = ""; - exec("/usr/local/sbin/pbi_info " . escapeshellarg($pkg), $output, $retval); + $_gb = exec("/usr/local/sbin/pbi_info " . escapeshellarg($pkg), $output, $retval); return (intval($retval) == 0); } |