From b006f6bece9991a615299e548e3afad00464b3fd Mon Sep 17 00:00:00 2001 From: randomshell Date: Thu, 3 Sep 2020 04:12:05 +0000 Subject: [PATCH] Fix files removal on revokeClient() --- wireguard-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index 5b3ea89..ac75459 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -330,7 +330,8 @@ function revokeClient() { sed -i "/^### Client ${CLIENT_NAME}\$/,/^$/d" "/etc/wireguard/${SERVER_WG_NIC}.conf" # remove generated client file - rm -f "${HOME}/${SERVER_WG_NIC}-client-${CLIENT_NAME}.conf" + find /home/ -maxdepth 2 -name "${SERVER_WG_NIC}-client-${CLIENT_NAME}.conf" -delete + rm -f "/root/${SERVER_WG_NIC}-client-${CLIENT_NAME}.conf" # restart wireguard to apply changes systemctl restart "wg-quick@${SERVER_WG_NIC}"