Updated client name input restrictions and hint

This commit is contained in:
Aleksander 2020-07-17 22:10:31 +03:00 committed by GitHub
parent eca5be8aac
commit b4773385a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1052,9 +1052,9 @@ verb 3" >>/etc/openvpn/client-template.txt
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 =~ ^[a-zA-Z0-9_]+$ ]]; do
until [[ $CLIENT =~ ^[a-zA-Z0-9_-]+$ ]]; do
read -rp "Client name: " -e CLIENT
done