diff options
author | Stanislas <stanislas.lange@pm.me> | 2020-08-08 14:31:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-08 14:31:39 +0200 |
commit | 315646ae12e80193a8b9c8d0047ecdcbaaf8a669 (patch) | |
tree | 96fddaf5f89f8f02f2f10017c25d454b497a39c9 | |
parent | 2669e5af0cf25f7babf7320581874e1f93c35547 (diff) | |
parent | 2125b67cd787c55f159779829e53f112ac80825f (diff) |
Merge pull request #114 from Serpentiel/patch-1
Updated client name input restrictions and hint
-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 59f7946..d450d99 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -212,9 +212,9 @@ function newClient() { echo "" echo "Tell me a name for the client." - echo "Use one word only, no special characters." + echo "The name must consist of alphanumeric character. It may also include an underscore or a dash." - until [[ ${CLIENT_NAME} =~ ^[a-zA-Z0-9_]+$ && ${CLIENT_EXISTS} == '0' ]]; do + until [[ ${CLIENT_NAME} =~ ^[a-zA-Z0-9_-]+$ && ${CLIENT_EXISTS} == '0' ]]; do read -rp "Client name: " -e CLIENT_NAME CLIENT_EXISTS=$(grep -c -E "^### Client ${CLIENT_NAME}\$" "/etc/wireguard/${SERVER_WG_NIC}.conf") |