diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-08-23 19:11:58 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-08-23 19:11:58 -0400 |
commit | 2fd9d05075e01ae8b0619cce91844e6fc829a91b (patch) | |
tree | 955cbd534e55d240d7e69590ca87659a052bf8f8 /etc | |
parent | 09821234c937e24fbf4b69ca9cdc8d77af3cc6c1 (diff) | |
download | pfsense-2fd9d05075e01ae8b0619cce91844e6fc829a91b.zip pfsense-2fd9d05075e01ae8b0619cce91844e6fc829a91b.tar.gz |
Create resolv.conf before loading rules. Resolves #21
Diffstat (limited to 'etc')
-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 6cec616..0ea8a92 100755 --- a/etc/rc.bootup +++ b/etc/rc.bootup @@ -195,12 +195,12 @@ interfaces_configure(); if(!$debugging) unmute_kernel_msgs(); -/* setup altq + pf */ -filter_configure_sync(); - /* generate resolv.conf */ system_resolvconf_generate(); +/* setup altq + pf */ +filter_configure_sync(); + /* start pflog */ echo "Starting PFLOG..."; filter_pflog_start(); |