From c024742b5d6d8f80126322c57eff0d2c481d9212 Mon Sep 17 00:00:00 2001 From: Navratan Gupta Date: Wed, 1 Jul 2020 13:42:04 +0530 Subject: [PATCH] Check wireguard status with /etc/wireguard/params --- wireguard-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index bc999aa..ea6d99f 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -174,14 +174,14 @@ if [[ $1 == "add-client" ]]; then exit 1 fi elif [[ $1 == "uninstall" ]]; then - if [[ -e /etc/wireguard ]]; then + if [[ -e /etc/wireguard/params ]]; then uninstall exit 0 else echo "WireGuard is not installed." exit 1 fi -elif [[ -e /etc/wireguard ]]; then +elif [[ -e /etc/wireguard/params ]]; then echo "WireGuard is already installed. Run with 'add-client' to add a client or 'uninstall' to remove." exit 1 fi