mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 02:22:04 -04:00
Send NOFITY messages after deleting private-type records.
The `rndc signing -clear` command cleans up the private-type records that keep track of zone signing activity, but before this change it did not tell the secondary servers that the zone has changed.
This commit is contained in:
parent
7443bd5cc7
commit
f3f7b7df5d
1 changed files with 2 additions and 1 deletions
|
|
@ -19576,7 +19576,8 @@ keydone(isc_task_t *task, isc_event_t *event) {
|
|||
commit = true;
|
||||
|
||||
LOCK_ZONE(zone);
|
||||
DNS_ZONE_SETFLAG(zone, DNS_ZONEFLG_LOADED);
|
||||
DNS_ZONE_SETFLAG(zone, DNS_ZONEFLG_LOADED|
|
||||
DNS_ZONEFLG_NEEDNOTIFY);
|
||||
zone_needdump(zone, 30);
|
||||
UNLOCK_ZONE(zone);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue