From: Mark Wooding Date: Sun, 4 May 2014 09:45:18 +0000 (+0100) Subject: Makefile: Match A and AAAA records, for IPv6ness. X-Git-Url: https://git.distorted.org.uk/~mdw/dnserr/commitdiff_plain/00194367a6715659248ebc98f6efd72f61f1d34f?hp=263d66f63e85b26d74a5a7c3525b7494015e4d42 Makefile: Match A and AAAA records, for IPv6ness. --- diff --git a/Makefile b/Makefile index b134f09..7a397d1 100644 --- a/Makefile +++ b/Makefile @@ -57,9 +57,9 @@ dnserr.zone.sigold: dnserr.zone key/$(ZONE).stamp TARGETS += dnserr.zone.sig OLDSIGMATCH = $$1 == "expired-rrsig.$(ZONE)." && \ - $$4 == "RRSIG" && $$5 == "A" + $$4 == "RRSIG" && ($$5 == "A" || $$5 == "AAAA") BADSIGMATCH = $$1 == "invalid-rrsig.$(ZONE)." && \ - $$4 == "RRSIG" && $$5 == "A" + $$4 == "RRSIG" && ($$5 == "A" || $$5 == "AAAA") CLEAN += t.oldsig dnserr.zone.sig: dnserr.zone.sigold dnserr.zone.signew awk '$(OLDSIGMATCH) { print; }' \