missing spaces in nsd.conf (has no effect but looks proper)
This commit is contained in:
parent
afb6c26c8b
commit
699bccad80
|
@ -290,7 +290,7 @@ server:
|
||||||
# Internet sees this machine on. Get those interface addresses
|
# Internet sees this machine on. Get those interface addresses
|
||||||
# from `hostname -i` (which omits all localhost addresses).
|
# from `hostname -i` (which omits all localhost addresses).
|
||||||
for ipaddr in shell("check_output", ["/bin/hostname", "-I"]).strip().split(" "):
|
for ipaddr in shell("check_output", ["/bin/hostname", "-I"]).strip().split(" "):
|
||||||
nsdconf += "ip-address: %s\n" % ipaddr
|
nsdconf += " ip-address: %s\n" % ipaddr
|
||||||
|
|
||||||
|
|
||||||
# Append the zones.
|
# Append the zones.
|
||||||
|
|
Loading…
Reference in New Issue