diff options
author | Stanislas Lange <angristan@pm.me> | 2020-04-28 15:02:30 +0200 |
---|---|---|
committer | Stanislas Lange <angristan@pm.me> | 2020-04-28 15:02:30 +0200 |
commit | 5b1ec52ac26bc9bc1f840e1b6cea566ef6d6abc9 (patch) | |
tree | 8203f330d1b5fbfce525ded8c6260e1b9d746910 /wireguard-install.sh | |
parent | 89258ba91d5d8720c56466501c2fb23123deef2f (diff) |
chore(args): rename add_client to add-client
Diffstat (limited to 'wireguard-install.sh')
-rw-r--r-- | wireguard-install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wireguard-install.sh b/wireguard-install.sh index 031dc33..c811ce8 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -79,7 +79,7 @@ if [ "$(systemd-detect-virt)" == "lxc" ]; then exit fi -if [[ $1 == "add_client" ]];then +if [[ $1 == "add-client" ]];then if [[ -e /etc/wireguard ]]; then addClient exit 0 @@ -88,7 +88,7 @@ if [[ $1 == "add_client" ]];then exit 1 fi elif [[ -e /etc/wireguard ]]; then - echo "WireGuard is already installed. Run with 'add_client' to add a client." + echo "WireGuard is already installed. Run with 'add-client' to add a client." exit 1 fi |