mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-22 10:10:14 -04:00
Change isctest.kasp.dnssec_verify to take FQDN
This is required to AXFR and verify the root zone and it makes no difference for non-root zones (dnssec-verify takes FQDN or makes the provided name absolute).
This commit is contained in:
parent
9e9af18e4a
commit
1ce7cf2dd2
1 changed files with 1 additions and 1 deletions
|
|
@ -935,7 +935,7 @@ def check_dnssec_verify(server, zone, tsig=None):
|
|||
file.write(rr.to_text())
|
||||
file.write("\n")
|
||||
|
||||
verify_command = [os.environ.get("VERIFY"), "-z", "-o", zone, zonefile]
|
||||
verify_command = [os.environ.get("VERIFY"), "-z", "-o", fqdn, zonefile]
|
||||
verified = isctest.run.cmd(verify_command, raise_on_exception=False)
|
||||
if verified.rc == 0:
|
||||
return
|
||||
|
|
|
|||
Loading…
Reference in a new issue