mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 02:42:33 -05:00
1418. [bug] 'rndc reconfig' did not cause new slaves to load.
This commit is contained in:
parent
9bd478a5e6
commit
c7fc6434fe
2 changed files with 9 additions and 1 deletions
2
CHANGES
2
CHANGES
|
|
@ -1,3 +1,5 @@
|
|||
1418. [bug] 'rndc reconfig' did not cause new slaves to load.
|
||||
|
||||
1417. [func] ID.SERVER/CHAOS is now a built in zone.
|
||||
See "server-id" for how to configure.
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: server.c,v 1.393 2003/01/20 05:46:09 marka Exp $ */
|
||||
/* $Id: server.c,v 1.394 2003/01/20 23:51:23 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -2375,6 +2375,12 @@ load_new_zones(ns_server_t *server, isc_boolean_t stop) {
|
|||
{
|
||||
CHECK(dns_view_loadnew(view, stop));
|
||||
}
|
||||
/*
|
||||
* Force zone maintenance. Do this after loading
|
||||
* so that we know when we need to force AXFR of
|
||||
* slave zones whose master files are missing.
|
||||
*/
|
||||
CHECK(dns_zonemgr_forcemaint(server->zonemgr));
|
||||
cleanup:
|
||||
isc_task_endexclusive(server->task);
|
||||
return (result);
|
||||
|
|
|
|||
Loading…
Reference in a new issue