diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-08-26 01:24:34 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-08-26 01:24:34 +0000 |
commit | 1d9652cfcd93c63b59ad6f39515f1fc4059063d1 (patch) | |
tree | a739f9c083d816204a5c1d55c3e86d805b84da26 /etc/rc.bootup | |
parent | f92e9ff325cf04c359f2bf2b9685d3dbfdd838a8 (diff) | |
download | pfsense-1d9652cfcd93c63b59ad6f39515f1fc4059063d1.zip pfsense-1d9652cfcd93c63b59ad6f39515f1fc4059063d1.tar.gz |
Echo out . in a few places during bootup
Diffstat (limited to 'etc/rc.bootup')
-rwxr-xr-x | etc/rc.bootup | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/etc/rc.bootup b/etc/rc.bootup index a753150..2e4b34d 100755 --- a/etc/rc.bootup +++ b/etc/rc.bootup @@ -37,26 +37,19 @@ echo "."; require_once("globals.inc"); echo "."; - require_once("pfsense-utils.inc"); - echo "."; /* let the other functions know we're booting */ $pkg_interface = 'console'; - echo "."; $g['booting'] = TRUE; - echo "."; touch("{$g['varrun_path']}/booting"); - echo "."; if($g['platform'] == "cdrom") { $motd = trim(file_get_contents("/etc/motd")); if(strlen($motd) > 2) echo "\n{$motd}\n\n"; } /* parse the configuration and include all functions used below */ - echo "."; require_once("config.inc"); echo "."; require_once("functions.inc"); - echo "."; /* get system memory amount */ $memory = get_memory(); $avail = $memory[0]; |