Reduce repetitive code

This commit is contained in:
xiagw 2020-09-24 16:06:29 +07:00
parent 235d81aa4c
commit 19561bd396
No known key found for this signature in database
GPG key ID: AA79D99901C34E05

View file

@ -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