From 0e207427651572bd13f0677a07969b3723047fef Mon Sep 17 00:00:00 2001 From: Kevin Otte Date: Thu, 1 Jan 2015 14:53:34 -0500 Subject: [PATCH] Update backend.pl SOA record format is "hostname email serial ..." Example has hostname and email flipped. --- modules/pipebackend/backend.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.47.2