From b69374f910556232a0bbb72cdaf1014b45063e0e Mon Sep 17 00:00:00 2001 From: Ermal Date: Mon, 8 Aug 2011 17:55:21 +0000 Subject: [PATCH] Start NTPd after dns since its a requirment and latest changes should help with delays people are reporting. Reminded-by: Jim --- etc/rc.bootup | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/etc/rc.bootup b/etc/rc.bootup index 2f0c2cd33c..c1749cf5f5 100755 --- a/etc/rc.bootup +++ b/etc/rc.bootup @@ -284,11 +284,6 @@ relayd_configure(); /* configure console menu */ system_console_configure(); -/* start the NTP client */ -echo "Starting OpenNTP time client..."; -system_ntp_configure(); -echo "done.\n"; - /* start DHCP service */ services_dhcpd_configure(); @@ -307,6 +302,11 @@ send_event("service reload dyndnsall"); /* Run a filter configure now that most all services have started */ filter_configure_sync(); +/* start the NTP client */ +echo "Starting OpenNTP time client..."; +system_ntp_configure(); +echo "done.\n"; + /* setup pppoe and pptp */ vpn_setup();