mirror of
https://github.com/angristan/wireguard-install.git
synced 2025-04-05 03:43:30 +03:00
Fix $CLIENT_NAME variable
This commit is contained in:
parent
3583ffc4c3
commit
bea98cdce6
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue