From f75ebc20e41aaa93cd0650c4295fc131339ab214 Mon Sep 17 00:00:00 2001 From: xiagw Date: Thu, 24 Sep 2020 16:18:05 +0700 Subject: [PATCH] fix: remove client file, it should be in where the client configuration will be written --- wireguard-install.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index c752dbf..bae7137 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -327,8 +327,16 @@ function revokeClient() { # remove [Peer] block matching $CLIENT_NAME sed -i "/^### Client ${CLIENT_NAME}\$/,/^$/d" "/etc/wireguard/${SERVER_WG_NIC}.conf" + # Home directory of the user, where the client configuration will be written + if [ -e "/home/${CLIENT_NAME}" ]; then # if $1 is a user name + HOME_DIR="/home/${CLIENT_NAME}" + elif [ "${SUDO_USER}" ]; then # if not, use SUDO_USER + HOME_DIR="/home/${SUDO_USER}" + else # if not SUDO_USER, use /root + HOME_DIR="/root" + fi # remove generated client file - rm -f "${HOME}/${SERVER_WG_NIC}-client-${CLIENT_NAME}.conf" + rm -f "${HOME_DIR}/${SERVER_WG_NIC}-client-${CLIENT_NAME}.conf" # restart wireguard to apply changes systemctl restart "wg-quick@${SERVER_WG_NIC}"