summaryrefslogtreecommitdiffstats
path: root/usr/local/www/pkg_mgr_install.php
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2012-06-15 10:01:43 +0000
committerErmal <eri@pfsense.org>2012-06-15 10:02:05 +0000
commit12b0fa564dc9b9ffe1773855e6ab528f4a5c7a5e (patch)
tree1cabca3585dc0ccb9b4ce0c53ade0be96638db9e /usr/local/www/pkg_mgr_install.php
parente88ea3445f62fcfdd5367dc4897ce7a23130749d (diff)
downloadpfsense-12b0fa564dc9b9ffe1773855e6ab528f4a5c7a5e.zip
pfsense-12b0fa564dc9b9ffe1773855e6ab528f4a5c7a5e.tar.gz
Actually make reinstallpkg remove the bionaries and really reinstall them
Diffstat (limited to 'usr/local/www/pkg_mgr_install.php')
-rwxr-xr-xusr/local/www/pkg_mgr_install.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr/local/www/pkg_mgr_install.php b/usr/local/www/pkg_mgr_install.php
index 8659b8e..811f172 100755
--- a/usr/local/www/pkg_mgr_install.php
+++ b/usr/local/www/pkg_mgr_install.php
@@ -141,7 +141,6 @@ switch($_GET['mode']) {
update_output_window(file_get_contents("/tmp/pkg_mgr_{$id}.log"));
break;
case "reinstallxml":
- case "reinstallpkg":
delete_package_xml(htmlspecialchars($_GET['pkg']));
if (install_package(htmlspecialchars($_GET['pkg'])) < 0) {
update_status(gettext("Package reinstallation failed."));
@@ -184,6 +183,9 @@ switch($_GET['mode']) {
update_output_window($static_output);
filter_configure();
break;
+ case "reinstallpkg":
+ update_status(gettext("Reinstall package {$_GET['pkg']}."));
+ uninstall_package($_GET['pkg']);
default:
$status = install_package(htmlspecialchars($_GET['id']));
if($status == -1) {
OpenPOWER on IntegriCloud