From 0c9bd9022bda4c5e0c9742d5617d5239af0f221c Mon Sep 17 00:00:00 2001 From: bryan Date: Wed, 24 Nov 2021 10:58:13 -0500 Subject: [PATCH] Some more cleanup --- installJRMC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installJRMC b/installJRMC index 14b2e65..e55a2f8 100755 --- a/installJRMC +++ b/installJRMC @@ -120,7 +120,7 @@ init() { pkg_install(){ ifSudo apt-get install -y -q0 "$@"; } pkg_reinstall(){ ifSudo apt-get reinstall -y -q0 "$@"; } pkg_install_nogpg(){ ifSudo apt-get install -y -q0 "$@"; } - pkg_remove(){ ifSudo apt-get remove -y -q0 "$@"; } + pkg_remove(){ ifSudo apt-get remove --auto-remove -y -q0 "$@"; } pkg_update(){ ifSudo apt-get update -y -q0; } pkg_query(){ ifSudo dpkg -s "$@"; } firewall_cmd(){ ifSudo ufw "$@"; }