From 05e4e01cc99a2ab2a7852a814c866273430c7f29 Mon Sep 17 00:00:00 2001 From: BlackcatRs Date: Sat, 27 Mar 2021 13:07:36 +0100 Subject: [PATCH] script support raspbian --- wireguard-install.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index 84b0acb..3d39015 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -134,6 +134,10 @@ function installWireGuard() { apt update apt-get install -y iptables resolvconf qrencode apt-get install -y -t buster-backports wireguard + elif [[ ${OS} == 'raspbian' ]]; then + apt update + apt-get install -y iptables resolvconf qrencode + apt-get install -y wireguard elif [[ ${OS} == 'fedora' ]]; then if [[ ${VERSION_ID} -lt 32 ]]; then dnf install -y dnf-plugins-core @@ -368,7 +372,7 @@ function uninstallWg() { if [[ ${OS} == 'ubuntu' ]]; then apt-get autoremove --purge -y wireguard qrencode - elif [[ ${OS} == 'debian' ]]; then + elif [[ ${OS} == 'debian' || ${OS} == 'raspbian' ]]; then apt-get autoremove --purge -y wireguard qrencode elif [[ ${OS} == 'fedora' ]]; then dnf remove -y wireguard-tools qrencode