From: Evan Hunt Date: Wed, 26 Mar 2025 01:01:24 +0000 (-0700) Subject: fix broken dnssec test X-Git-Tag: v9.21.7~24^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=38f06d958bbff3a1793e6443802144fc2a7531a8;p=thirdparty%2Fbind9.git fix broken dnssec test When !10262 was rebased prior to merging, there was a use of dnssec-keygen -n in the dnssec system test that had not been removed, causing a test failure. This has been fixed. --- diff --git a/bin/tests/system/dnssec/ns3/sign.sh b/bin/tests/system/dnssec/ns3/sign.sh index 9960b4c5c79..8f52e1f5146 100644 --- a/bin/tests/system/dnssec/ns3/sign.sh +++ b/bin/tests/system/dnssec/ns3/sign.sh @@ -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"