From 6e905c8a6fa2c84b99be2dad21d659e4c2f93395 Mon Sep 17 00:00:00 2001 From: jim-p Date: Thu, 25 Apr 2013 15:30:46 -0400 Subject: [PATCH] Move dnsmasq start to before ntp, or else the entry for the DNS forwarder in /etc/resolv.conf will always time out. --- etc/rc.bootup | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/etc/rc.bootup b/etc/rc.bootup index c6176a1d47..44c5c04c25 100755 --- a/etc/rc.bootup +++ b/etc/rc.bootup @@ -278,6 +278,9 @@ system_routing_configure(); /* enable routing */ system_routing_enable(); +/* start dnsmasq service */ +services_dnsmasq_configure(); + /* Do an initial time sync */ echo "Starting NTP time client..."; /* At bootup this will just write the config, ntpd will launch from ntpdate_sync_once.sh */ @@ -293,9 +296,6 @@ system_console_configure(); /* start DHCP service */ services_dhcpd_configure(); -/* start dnsmasq service */ -services_dnsmasq_configure(); - /* start dhcpleases dhpcp hosts leases program */ system_dhcpleases_configure();