diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-05-21 23:44:31 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-05-21 23:44:31 +0000 |
commit | dd2ab8f8543352b0831475e52bce815c0a038bf0 (patch) | |
tree | 31f5c8772f5e569da8828ea00aa1e5beca08a5e5 /etc/rc.bootup | |
parent | 4ec1f1c72a356ca0fafbeb404dbb2433e33b1645 (diff) | |
download | pfsense-dd2ab8f8543352b0831475e52bce815c0a038bf0.zip pfsense-dd2ab8f8543352b0831475e52bce815c0a038bf0.tar.gz |
Mute and unmute the console at strategic times to cleanup the boot sequence
Diffstat (limited to 'etc/rc.bootup')
-rwxr-xr-x | etc/rc.bootup | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/etc/rc.bootup b/etc/rc.bootup index dfa9631..ad777c8 100755 --- a/etc/rc.bootup +++ b/etc/rc.bootup @@ -75,7 +75,7 @@ print "Cleaning backup cache... "; cleanup_backupcache(true); - + /* read in /etc/sysctl.conf and set values if needed */ system_setup_sysctl(); @@ -109,21 +109,30 @@ /* set up LAN interface */ print "Configuring LAN interface... "; + mute_kernel_msgs(); interfaces_lan_configure(); + unmute_kernel_msgs(); print "done.\n"; /* set up WAN interface */ print "Configuring WAN interface... "; + mute_kernel_msgs(); interfaces_wan_configure(); + unmute_kernel_msgs(); print "done.\n"; /* set up Optional interfaces */ + mute_kernel_msgs(); print "Configuring OPT interfaces...\n"; interfaces_optional_configure(); - + unmute_kernel_msgs(); + print "done.\n"; + /* setup carp interfaces */ interfaces_carp_configure(); + unmute_kernel_msgs(); + /* start pflog */ filter_pflog_start(); @@ -196,4 +205,4 @@ unlink("{$g['varrun_path']}/booting"); $g['booting'] = FALSE; -?> +?>
\ No newline at end of file |