1
1
mirror of https://github.com/namibia/openvpn-install.git synced 2024-06-01 11:00:48 +00:00

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

View File

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