From: Kevin Otte Date: Thu, 1 Jan 2015 19:53:34 +0000 (-0500) Subject: Update backend.pl X-Git-Tag: rec-3.7.0-rc1~67^2~10^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F2035%2Fhead;p=thirdparty%2Fpdns.git Update backend.pl SOA record format is "hostname email serial ..." Example has hostname and email flipped. --- diff --git a/modules/pipebackend/backend.pl b/modules/pipebackend/backend.pl index cdc906dd39..2bd6acfbe8 100755 --- a/modules/pipebackend/backend.pl +++ b/modules/pipebackend/backend.pl @@ -33,7 +33,7 @@ while(<>) if(($qtype eq "SOA" || $qtype eq "ANY") && $qname eq "example.com") { print STDERR "$$ Sent SOA records\n"; - print "DATA $qname $qclass SOA 3600 -1 ahu.example.com ns1.example.com 2008080300 1800 3600 604800 3600\n"; + print "DATA $qname $qclass SOA 3600 -1 ns1.example.com ahu.example.com 2008080300 1800 3600 604800 3600\n"; } if(($qtype eq "NS" || $qtype eq "ANY") && $qname eq "example.com") { print STDERR "$$ Sent NS records\n";