mirror of
https://github.com/angristan/wireguard-install.git
synced 2024-11-27 23:36:01 +03:00
Merge pull request #114 from Serpentiel/patch-1
Updated client name input restrictions and hint
This commit is contained in:
commit
315646ae12
@ -212,9 +212,9 @@ function newClient() {
|
|||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "Tell me a name for the client."
|
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
|
read -rp "Client name: " -e CLIENT_NAME
|
||||||
CLIENT_EXISTS=$(grep -c -E "^### Client ${CLIENT_NAME}\$" "/etc/wireguard/${SERVER_WG_NIC}.conf")
|
CLIENT_EXISTS=$(grep -c -E "^### Client ${CLIENT_NAME}\$" "/etc/wireguard/${SERVER_WG_NIC}.conf")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user