From bea98cdce6f9ae812fd90658c86a2dcf25daa5a8 Mon Sep 17 00:00:00 2001 From: randomshell Date: Thu, 30 Jul 2020 21:16:25 +0000 Subject: [PATCH] Fix $CLIENT_NAME variable --- wireguard-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index 150172b..5319d79 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -247,8 +247,8 @@ function newClient() { CLIENT_PRE_SHARED_KEY=$(wg genpsk) # Home directory of the user, where the client configuration will be written - if [ -e "/home/$CLIENT" ]; then # if $1 is a user name - HOME_DIR="/home/$CLIENT" + 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