From aeeda96aca3167d457ed1c5f9a18a290e3ce4e1e Mon Sep 17 00:00:00 2001 From: Jorj Bauer Date: Wed, 11 Oct 2023 23:57:43 -0400 Subject: [PATCH] fix syntax --- bin/sync-slave | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sync-slave b/bin/sync-slave index 8c0e65a..32e3339 100755 --- a/bin/sync-slave +++ b/bin/sync-slave @@ -63,7 +63,7 @@ sub do_rewrite { foreach my $i (sort {$a->{zone} cmp $b->{zone}} @vh) { next if ($i->{type} eq '_dnssec'); - print $fh "zone \"$i->{zone}\" { type slave; file \"/var/cache/bind/db.$i->{zone}\"; masters { $i->{master}; allow-notify {key \"notify-key\";}; }; };\n"; + print $fh "zone \"$i->{zone}\" { type slave; file \"/var/cache/bind/db.$i->{zone}\"; masters { $i->{master}; }; allow-notify {key \"notify-key\";}; };\n"; } close $fh; print "Installing new slave host list\n";