summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/pkg_mgr_installed.php
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2015-11-13 14:20:54 -0200
committerRenato Botelho <renato@netgate.com>2015-11-13 14:20:54 -0200
commitdf263538fa2d45c700ec6837a64038d2fc968102 (patch)
tree18e3f6c540fbe48e0812bd723611eea750483879 /src/usr/local/www/pkg_mgr_installed.php
parent82692fe1029452ec529ee28c9ca97bf6aa99cd6a (diff)
downloadpfsense-df263538fa2d45c700ec6837a64038d2fc968102.zip
pfsense-df263538fa2d45c700ec6837a64038d2fc968102.tar.gz
Use recently added broken item from get_pkg_info
Diffstat (limited to 'src/usr/local/www/pkg_mgr_installed.php')
-rw-r--r--src/usr/local/www/pkg_mgr_installed.php44
1 files changed, 20 insertions, 24 deletions
diff --git a/src/usr/local/www/pkg_mgr_installed.php b/src/usr/local/www/pkg_mgr_installed.php
index 3489772..f4ff765 100644
--- a/src/usr/local/www/pkg_mgr_installed.php
+++ b/src/usr/local/www/pkg_mgr_installed.php
@@ -88,7 +88,7 @@ display_top_tabs($tab_array);
$installed_packages = array();
$package_list = get_pkg_info();
foreach ($package_list as $pkg) {
- if (!isset($pkg['installed'])) {
+ if (!isset($pkg['installed']) && !isset($pkg['broken'])) {
continue;
}
$installed_packages[] = $pkg;
@@ -125,34 +125,30 @@ if(empty($installed_packages)):?>
$missing = false;
$vergetstr = "";
-
print($name . '<br />');
- if (isset($pkg['installed_version']) && isset($pkg['version'])) {
+ if (isset($pkg['broken'])) {
+ // package is configured, but does not exist in the system
+ $txtcolor = "red";
+ $missing = true;
+ $status = 'Package is configured, but not installed!';
+ } else if (isset($pkg['installed_version']) && isset($pkg['version'])) {
$version_compare = pkg_version_compare($pkg['installed_version'], $pkg['version']);
- if ( is_package_installed($name) && !is_pkg_installed($g['pkg_prefix'] . get_package_internal_name($name))) {
- // package is configured, but does not exist in the system
- $txtcolor = "red";
- $missing = true;
- $status = 'Package is configured, but not installed!';
+ if ($version_compare == '>') {
+ // we're running a newer version of the package
+ $status = 'Newer than available ('. $pkg['version'] .')';
+ } else if ($version_compare == '<') {
+ // we're running an older version of the package
+ $status = 'Upgrade available to '.$pkg['version'];
+ $txtcolor = "blue";
+ $upgradeavail = true;
+ $vergetstr = '&amp;from=' . $pkg['installed_version'] . '&amp;to=' . $pkg['version'];
+ } else if ($version_compare == '=') {
+ // we're running the current version
+ $status = 'Up-to-date';
} else {
-
- if ($version_compare == '>') {
- // we're running a newer version of the package
- $status = 'Newer than available ('. $pkg['version'] .')';
- } else if ($version_compare == '<') {
- // we're running an older version of the package
- $status = 'Upgrade available to '.$pkg['version'];
- $txtcolor = "blue";
- $upgradeavail = true;
- $vergetstr = '&amp;from=' . $pkg['installed_version'] . '&amp;to=' . $pkg['version'];
- } else if ($version_compare == '=') {
- // we're running the current version
- $status = 'Up-to-date';
- } else {
- $status = 'Error comparing version';
- }
+ $status = 'Error comparing version';
}
} else {
// unknown available package version
OpenPOWER on IntegriCloud