mirror of
https://github.com/angristan/wireguard-install.git
synced 2025-04-05 03:43:30 +03:00
Reduce repetitive code
This commit is contained in:
parent
235d81aa4c
commit
19561bd396
1 changed files with 1 additions and 5 deletions
|
@ -314,11 +314,7 @@ function revokeClient() {
|
|||
echo "Select the existing client you want to revoke"
|
||||
grep -E "^### Client" "/etc/wireguard/${SERVER_WG_NIC}.conf" | cut -d ' ' -f 3 | nl -s ') '
|
||||
until [[ ${CLIENT_NUMBER} -ge 1 && ${CLIENT_NUMBER} -le ${NUMBER_OF_CLIENTS} ]]; do
|
||||
if [[ ${CLIENT_NUMBER} == '1' ]]; then
|
||||
read -rp "Select one client [1]: " CLIENT_NUMBER
|
||||
else
|
||||
read -rp "Select one client [1-${NUMBER_OF_CLIENTS}]: " CLIENT_NUMBER
|
||||
fi
|
||||
read -rp "Select one client [$([[ ${CLIENT_NUMBER} == '1' ]] && echo '1' || echo "1-${NUMBER_OF_CLIENTS}")]: " CLIENT_NUMBER
|
||||
done
|
||||
|
||||
# match the selected number to a client name
|
||||
|
|
Loading…
Add table
Reference in a new issue