Skip to content
Snippets Groups Projects
Commit b6bd77f7 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

tests-extra: fix compatibility with Bind9 9.16

parent 28a419c8
No related branches found
No related tags found
No related merge requests found
......@@ -896,8 +896,6 @@ class Bind(Server):
s.item("transfers-in", "30")
s.item("transfers-out", "30")
s.item("minimal-responses", "true")
s.item("additional-from-auth", "false")
s.item("additional-from-cache", "false")
s.item("notify-delay", "0")
s.item("notify-rate", "1000")
s.item("max-journal-size", "unlimited")
......@@ -1033,7 +1031,7 @@ class Bind(Server):
continue
# unrelated: generate keys as Bind won't do
ps = [ 'dnssec-keygen', '-r', '/dev/urandom', '-n', 'ZONE', '-K', self.keydir ]
ps = [ 'dnssec-keygen', '-n', 'ZONE', '-a', 'RSASHA256', '-b', '1024', '-K', self.keydir ]
if z.dnssec.nsec3:
ps += ['-3']
k1 = check_output(ps + [z.name], stderr=DEVNULL)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment