diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-03-18 18:10:14 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-03-18 18:10:14 +0000 |
commit | a8a2b9b8ba4ba043e30f1f4fb929a4ea03346b1c (patch) | |
tree | 02b9c1addcd42e8f92e3ad13fcea504f1a7e8533 /etc/rc.bootup | |
parent | 962350ff83ddffbb5b29fe9068af599c1a1d6613 (diff) | |
download | pfsense-a8a2b9b8ba4ba043e30f1f4fb929a4ea03346b1c.zip pfsense-a8a2b9b8ba4ba043e30f1f4fb929a4ea03346b1c.tar.gz |
When we detect that there is less than 65 megs of ram, output the detected value
Diffstat (limited to 'etc/rc.bootup')
-rwxr-xr-x | etc/rc.bootup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.bootup b/etc/rc.bootup index 19c955e..1dd3973 100755 --- a/etc/rc.bootup +++ b/etc/rc.bootup @@ -185,7 +185,7 @@ echo "done.\n"; if($avail > 0 and $avail < 65) { - echo "System has less than 65 megabytes of ram. Delaying webConfigurator startup...\n"; + echo "System has less than 65 megabytes of ram {$avail}. Delaying webConfigurator startup...\n"; /* start webConfigurator up on final pass */ touch("/tmp/restart_webgui"); } else { |