mirror of
https://github.com/angristan/wireguard-install.git
synced 2025-04-05 03:43:30 +03:00
Don't exit if the client name already exists
Ask the user again if this is the case
This commit is contained in:
parent
dbdce6f98c
commit
6e27ee81df
1 changed files with 9 additions and 9 deletions
|
@ -15,18 +15,18 @@ function addClient() {
|
|||
echo ""
|
||||
echo "Tell me a name for the client."
|
||||
echo "Use one word only, no special characters."
|
||||
until [[ "$CLIENT_NAME" =~ ^[a-zA-Z0-9_]+$ ]]; 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")
|
||||
|
||||
if [[ $CLIENT_EXISTS == '1' ]]; then
|
||||
echo ""
|
||||
echo "A client with the specified name was already created, please choose another name."
|
||||
echo ""
|
||||
fi
|
||||
done
|
||||
|
||||
CLIENT_EXISTS=$(grep -c -E "^### Client $CLIENT_NAME\$" "/etc/wireguard/$SERVER_WG_NIC.conf")
|
||||
|
||||
if [[ $CLIENT_EXISTS == '1' ]]; then
|
||||
echo ""
|
||||
echo "A client with the specified name was already created, please choose another name."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
until [[ "$IPV4_EXISTS" == '0' ]]; do
|
||||
read -rp "Client's WireGuard IPv4 " -e -i "${SERVER_WG_IPV4: : -1}2" CLIENT_WG_IPV4
|
||||
IPV4_EXISTS=$(grep -c "$CLIENT_WG_IPV4" "/etc/wireguard/$SERVER_WG_NIC.conf")
|
||||
|
|
Loading…
Add table
Reference in a new issue