From ceec2ffb66de07aa77ee89590feb03433fbd9611 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Martin?= Date: Thu, 9 Apr 2020 16:34:50 +0200 Subject: [PATCH] fix apt-get remove for debian uninstall For Debian/Raspbian version, apt-get was installing instead of removing wireguard package. Also removed iptables from line to prevent user global firewall from being removed --- wireguard-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index 5e33c6a..62cef91 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -130,7 +130,7 @@ echo "Remove WireGuard Server ($distribution)" elif [ "$distribution" = "Debian" ] || [ "$distribution" = "Raspbian" ]; then systemctl stop wg-quick@wg0.service > /dev/null 2>&1 systemctl disable wg-quick@wg0.service > /dev/null 2>&1 - apt-get install -y wireguard iptables --force-yes > /dev/null 2>&1 + apt-get remove -y wireguard --force-yes > /dev/null 2>&1 rm -rf /etc/wireguard rm -f /etc/sysctl.d/wg.conf rm -f /etc/apt/sources.list.d/unstable.list