mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
Allow hyphen in last host path part
This commit is contained in:
@@ -1065,7 +1065,7 @@ strip_inline_comments() {
|
||||
|
||||
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])*)\.)*[a-z0-9\*](-?[a-z0-9])+\.[a-z]{2,}$'
|
||||
local hostname_string="${1,,}"; local hostname_regex='^(([a-z0-9\*](-?[a-z0-9])*)\.)+([a-z0-9\*](-?[a-z0-9])*)$'
|
||||
if [[ $hostname_string =~ $hostname_regex ]]; then
|
||||
return 0
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user