Merge pull request #3571 from znz/simplify-hostname_regex

Simplify hostname_regex
This commit is contained in:
Jose Diaz-Gonzalez
2019-05-24 18:01:14 -04:00
committed by GitHub

View File

@@ -312,7 +312,7 @@ is_global_vhost_enabled() {
is_valid_hostname() {
declare desc="return 0 if argument is a valid hostname; else return 1"
local hostname_string="${1,,}"
local hostname_regex='^([a-z0-9\.\*-]+\.)*[a-z0-9\*-]+$'
local hostname_regex='^[a-z0-9\.\*-]*[a-z0-9\*-]$'
if [[ $hostname_string =~ $hostname_regex ]]; then
return 0
else