mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-12 15:00:01 -04:00
[v9_10] Prevent dnssec-settime from printing a bogus warning
4686. [bug] dnssec-settime -p could print a bogus warning about
key deletion scheduled before its inactivation when a
key had an inactivation date set but no deletion date
set. [RT #45807]
(cherry picked from commit 330365566d)
This commit is contained in:
parent
457dc09806
commit
2a0ef82b19
3 changed files with 15 additions and 1 deletions
5
CHANGES
5
CHANGES
|
|
@ -1,3 +1,8 @@
|
|||
4686. [bug] dnssec-settime -p could print a bogus warning about
|
||||
key deletion scheduled before its inactivation when a
|
||||
key had an inactivation date set but no deletion date
|
||||
set. [RT #45807]
|
||||
|
||||
4685. [bug] dnssec-settime incorrectly calculated publication and
|
||||
activation dates for a successor key. [RT #45806]
|
||||
|
||||
|
|
|
|||
|
|
@ -485,7 +485,7 @@ main(int argc, char **argv) {
|
|||
&prevdel) == ISC_R_SUCCESS &&
|
||||
setinact && !setdel && !unsetdel && prevdel < inact) ||
|
||||
(!setdel && !unsetdel && !setinact && !unsetinact &&
|
||||
prevdel < previnact))
|
||||
prevdel != 0 && prevdel < previnact))
|
||||
fprintf(stderr, "%s: warning: Key is scheduled to "
|
||||
"be deleted before it is\n\t"
|
||||
"scheduled to be inactive.\n",
|
||||
|
|
|
|||
|
|
@ -170,6 +170,15 @@ n=`expr $n + 1`
|
|||
if [ $ret != 0 ]; then echo "I:failed"; fi
|
||||
status=`expr $status + $ret`
|
||||
|
||||
echo "I:checking no warning about delete date < inactive date with dnssec-settime when delete date is unset ($n)"
|
||||
ret=0
|
||||
$SETTIME -D none `cat oldstyle.key` > tmp.out 2>&1 || ret=1
|
||||
$SETTIME -p all `cat oldstyle.key` > tmp.out 2>&1 || ret=1
|
||||
grep "warning" tmp.out > /dev/null 2>&1 && ret=1
|
||||
n=`expr $n + 1`
|
||||
if [ $ret != 0 ]; then echo "I:failed"; fi
|
||||
status=`expr $status + $ret`
|
||||
|
||||
echo "I:checking warning about delete date < inactive date with dnssec-keygen ($n)"
|
||||
ret=0
|
||||
# keygen should print a warning about delete < inactive
|
||||
|
|
|
|||
Loading…
Reference in a new issue