mirror of
https://github.com/isc-projects/bind9.git
synced 2026-07-15 21:22:50 -04:00
fix: nil: Fix broken dnssec test
When !10262 was rebased prior to merging, there was a new use of dnssec-keygen -n in the dnssec system test that had not been removed in the branch, causing a test failure. This has been fixed. Merge branch 'each-merge-error' into 'main' See merge request isc-projects/bind9!10325
This commit is contained in:
commit
b01f70618e
1 changed files with 1 additions and 1 deletions
|
|
@ -627,7 +627,7 @@ zone=localkey.example.
|
|||
infile=bogus.example.db.in
|
||||
zonefile=localkey.example.db
|
||||
|
||||
keyname=$("$KEYGEN" -q -a "$DEFAULT_ALGORITHM" -b "$DEFAULT_BITS" -n zone "$zone")
|
||||
keyname=$("$KEYGEN" -q -a "$DEFAULT_ALGORITHM" -b "$DEFAULT_BITS" "$zone")
|
||||
|
||||
cat "$infile" "$keyname.key" >"$zonefile"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue