v0.2.1 Minor change in validate_hostname function

This commit is contained in:
Ze'ev Schurmann 2024-08-02 02:09:56 +02:00
parent 558cc6213e
commit 12c3e8777c
2 changed files with 4 additions and 3 deletions

2
achar
View File

@ -1,6 +1,6 @@
#!/bin/bash
## Title : ACHAR - Auto Completion of Hosts Add/Remove script
## Version : 0.2
## Version : 0.2.1
## GIT Repo : https://git.zaks.web.za/zaks-web/achar
## Author : Ze'ev Schurmann
## Company : ZAKS Web

View File

@ -1,6 +1,6 @@
#!/bin/bash
## Title : ACHAR - Auto Completion of Hosts Add/Remove script
## Version : 0.2
## Version : 0.2.1
## GIT Repo : https://git.zaks.web.za/zaks-web/achar
## Author : Ze'ev Schurmann
## Company : ZAKS Web
@ -525,7 +525,7 @@ function validate_host {
else
echo "Hostname is not an valid!"
echo "Invalid Domain Name or IP address!"
exit 1
fi
@ -533,6 +533,7 @@ function validate_host {
if [[ ${username:0:1} =~ ^[0-9]$ ]] || [[ ! $username =~ ^[A-Za-z0-9_.-]+$ ]]; then
echo "Username is not a valid format!"
echo "Must contain \"A-Z\", \"a-z\", \"0-9\", \"_\", \".\" and \"-\"."
exit 1
fi