chiark
/
gitweb
/
~mdw
/
dnserr
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
263d66f
)
Makefile: Match A and AAAA records, for IPv6ness.
author
Mark Wooding
<mdw@distorted.org.uk>
Sun, 4 May 2014 09:45:18 +0000
(10:45 +0100)
committer
Mark Wooding
<mdw@distorted.org.uk>
Sun, 4 May 2014 09:45:18 +0000
(10:45 +0100)
Makefile
patch
|
blob
|
blame
|
history
diff --git
a/Makefile
b/Makefile
index b134f09108a15e291e227d9600c540a08ea8b885..7a397d16e64d4e05fca18f660b28e6e6eb2f5a34 100644
(file)
--- 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)." && \
TARGETS += dnserr.zone.sig
OLDSIGMATCH = $$1 == "expired-rrsig.$(ZONE)." && \
- $$4 == "RRSIG" &&
$$5 == "A"
+ $$4 == "RRSIG" &&
($$5 == "A" || $$5 == "AAAA")
BADSIGMATCH = $$1 == "invalid-rrsig.$(ZONE)." && \
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; }' \
CLEAN += t.oldsig
dnserr.zone.sig: dnserr.zone.sigold dnserr.zone.signew
awk '$(OLDSIGMATCH) { print; }' \