diff options
author | jim-p <jimp@pfsense.org> | 2013-04-25 15:30:46 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2013-04-25 15:32:16 -0400 |
commit | 6e905c8a6fa2c84b99be2dad21d659e4c2f93395 (patch) | |
tree | 1914fa588123231e70c32a5de8fb5942ef0bc51b | |
parent | e4d3e327aba4479dccf848df902928ebc5c2273f (diff) | |
download | pfsense-6e905c8a6fa2c84b99be2dad21d659e4c2f93395.zip pfsense-6e905c8a6fa2c84b99be2dad21d659e4c2f93395.tar.gz |
Move dnsmasq start to before ntp, or else the entry for the DNS forwarder in /etc/resolv.conf will always time out.
-rwxr-xr-x | etc/rc.bootup | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/rc.bootup b/etc/rc.bootup index c6176a1..44c5c04 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(); |