Kicking ntpd in rc.newwanip(v6) dates back to OpenNTPD which didn't have dynamic interface scanning support. This seems to be the source of crashes in ntpd as described in Ticket #4155, and appears to be unnecessary.

This commit is contained in:
Chris Buechler 2015-09-22 00:57:01 -05:00
parent 352f808558
commit 0aa8caecff
2 changed files with 0 additions and 4 deletions

View File

@ -47,8 +47,6 @@ function restart_packages() {
global $oldip, $curwanip, $g;
/* restart packages */
system_ntp_configure(false);
mwexec_bg("/usr/local/sbin/ntpdate_sync_once.sh", true);
log_error("{$g['product_name']} package system has detected an IP change or dynamic WAN reconnection - $oldip -> $curwanip - Restarting packages.");
send_event("service reload packages");
}

View File

@ -48,8 +48,6 @@ function restart_packages() {
global $oldipv6, $curwanipv6, $g;
/* restart packages */
system_ntp_configure(false);
mwexec_bg("/usr/local/sbin/ntpdate_sync_once.sh", true);
log_error("{$g['product_name']} package system has detected an IP change or dynamic WAN reconnection - $oldipv6 -> $curwanipv6 - Restarting packages.");
send_event("service reload packages");
}