summaryrefslogtreecommitdiffstats
path: root/etc/inc/pkg-utils.inc
diff options
context:
space:
mode:
Diffstat (limited to 'etc/inc/pkg-utils.inc')
-rw-r--r--etc/inc/pkg-utils.inc5
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/inc/pkg-utils.inc b/etc/inc/pkg-utils.inc
index ed23227..e42f9d3 100644
--- a/etc/inc/pkg-utils.inc
+++ b/etc/inc/pkg-utils.inc
@@ -246,10 +246,11 @@ function pkg_delete($pkg_name) {
pkg_remove_prefix($pkg_name);
+ pkg_debug("Removing package {$pkg_name}\n");
if (is_pkg_installed($pkg_name)) {
- pkg_call("delete -q -y " . $g['pkg_prefix'] . $pkg_name);
+ pkg_call("delete -y " . $g['pkg_prefix'] . $pkg_name);
/* Cleanup unecessary dependencies */
- pkg_call("autoremove -y -q");
+ pkg_call("autoremove -y");
}
}
OpenPOWER on IntegriCloud