Missing a \\.
This commit is contained in:
parent
28af343752
commit
ec7e11c0f7
|
@ -59,7 +59,7 @@ let
|
||||||
hostToFqdn = host:
|
hostToFqdn = host:
|
||||||
if isNotNull (builtins.match "[^.]+\\.$" host) then
|
if isNotNull (builtins.match "[^.]+\\.$" host) then
|
||||||
host
|
host
|
||||||
else if isNotNull (builtins.match "[^.]+\\[^.]+$" host) then
|
else if isNotNull (builtins.match "[^.]+\\.[^.]+$" host) then
|
||||||
"${host}."
|
"${host}."
|
||||||
else if (hasAttr host zone.hosts) then
|
else if (hasAttr host zone.hosts) then
|
||||||
"${host}.${domain}."
|
"${host}.${domain}."
|
||||||
|
|
Loading…
Reference in New Issue