From: Steinar H. Gunderson Date: Sun, 9 Apr 2006 22:06:02 +0000 (+0000) Subject: Fixed a syntax error in the secondary's named.conf. X-Git-Url: https://git.sesse.net/?p=nms;a=commitdiff_plain;h=a0253e311adf21450e91820e568798b229c223ea Fixed a syntax error in the secondary's named.conf. --- diff --git a/config/make-named-secondary.pl b/config/make-named-secondary.pl index bef5aa2..4bff623 100755 --- a/config/make-named-secondary.pl +++ b/config/make-named-secondary.pl @@ -40,7 +40,7 @@ zone "0.0.127.in-addr.arpa" { zone "tg06.gathering.org" { type slave; notify no; - masters { 194.0.254.2 }; + masters { 194.0.254.2; }; file "tg06.gathering.org"; }; @@ -48,7 +48,7 @@ zone "tg06.gathering.org" { zone "255.0.194.in-addr.arpa" { type slave; notify no; - masters { 194.0.254.2 }; + masters { 194.0.254.2; }; file "255.0.194.in-addr.arpa"; allow-transfer { 194.0.255.2; 193.0.0.0/22; }; }; @@ -56,7 +56,7 @@ zone "255.0.194.in-addr.arpa" { zone "0.194.in-addr.arpa" { type slave; notify no; - masters { 194.0.254.2 }; + masters { 194.0.254.2; }; allow-update { key DHCP_UPDATER; }; file "dynamic/0.194.in-addr.arpa"; allow-transfer { 194.19.3.20; 194.0.255.2; 193.0.0.0/22; }; @@ -83,7 +83,7 @@ for my $net (@nets) { zone "$d.tg06.gathering.org" { type slave; notify no; - masters { 194.0.254.2 }; + masters { 194.0.254.2; }; allow-update { key DHCP_UPDATER; }; file "dynamic/$d.tg06.gathering.org"; allow-transfer { 194.19.3.20; 194.0.255.2; };