summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-09-01 22:23:39 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-09-01 22:23:39 +0000
commitcb74ffd577d42012dbaa8b15cad39a447e9e3d8d (patch)
treefd282b58c3c4c87c4505e04b67895df48ab35a3d
parent87294955ad97c1b4a22b2a7a79bc0533dc90ee03 (diff)
downloadpfsense-cb74ffd577d42012dbaa8b15cad39a447e9e3d8d.zip
pfsense-cb74ffd577d42012dbaa8b15cad39a447e9e3d8d.tar.gz
Now that we are optimized switch the loading firewall output on bootup to a "." method.
-rw-r--r--etc/inc/filter.inc12
-rwxr-xr-xetc/rc.bootup2
2 files changed, 7 insertions, 7 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc
index f47c0b6..37c872e 100644
--- a/etc/inc/filter.inc
+++ b/etc/inc/filter.inc
@@ -82,29 +82,29 @@ function filter_configure_sync() {
$wan_if = get_real_wan_interface();
/* generate aliases */
- if($g['booting'] == true) echo " aliases ";
+ if($g['booting'] == true) echo ".";
update_filter_reload_status("Creating aliases");
$aliases = filter_generate_aliases();
/* generate nat rules */
- if($g['booting'] == true) echo " rules ";
+ if($g['booting'] == true) echo ".";
update_filter_reload_status("Generating NAT rules");
$natrules = filter_nat_rules_generate();
/* generate pfctl rules */
- if($g['booting'] == true) echo " filtering ";
+ if($g['booting'] == true) echo ".";
update_filter_reload_status("Generating filter rules");
$pfrules = filter_rules_generate();
if(isset($config['shaper']['enable'])) {
/* generate altq interface setup parms */
- if($g['booting'] == true) echo " altq-interfaces ";
+ if($g['booting'] == true) echo ".";
update_filter_reload_status("Generating ALTQ interfaces");
$altq_ints = filter_setup_altq_interfaces();
/* generate altq queues */
- if($g['booting'] == true) echo " altq-queues ";
+ if($g['booting'] == true) echo ".";
update_filter_reload_status("Generating ALTQ queues");
$altq_queues = filter_generate_altq_queues($altq_ints);
/* generate altq rules */
- if($g['booting'] == true) echo " altq-rules ";
+ if($g['booting'] == true) echo ".";
/* Setup a default rule that tags ALL packets as unshaped
* we'll match only unshaped packets in the shaper code later
* this allows the shaper to be first match
diff --git a/etc/rc.bootup b/etc/rc.bootup
index 2e4b34d..b0e4201 100755
--- a/etc/rc.bootup
+++ b/etc/rc.bootup
@@ -187,7 +187,7 @@
openvpn_resync_all();
/* setup altq + pf */
- echo "Configuring firewall... ";
+ echo "Configuring firewall...";
//mute_kernel_msgs();
filter_configure_sync();
//unmute_kernel_msgs();
OpenPOWER on IntegriCloud