summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@sullrich-MacBookPro.geekgod.com>2009-05-15 20:52:30 -0400
committerScott Ullrich <sullrich@sullrich-MacBookPro.geekgod.com>2009-05-15 20:52:30 -0400
commit540bd3139adbb009f23e21d7b84bfed958f4a48a (patch)
tree87e792526c88de12531ba5ffc4b8b206b4cdd7b6 /etc
parent9594cfa337571f318e15a86fe2c56f221072ebb5 (diff)
downloadpfsense-540bd3139adbb009f23e21d7b84bfed958f4a48a.zip
pfsense-540bd3139adbb009f23e21d7b84bfed958f4a48a.tar.gz
Cleanup my hick ky english
Diffstat (limited to 'etc')
-rwxr-xr-xetc/rc.bootup12
1 files changed, 6 insertions, 6 deletions
diff --git a/etc/rc.bootup b/etc/rc.bootup
index 8ee3586..7ccb955 100755
--- a/etc/rc.bootup
+++ b/etc/rc.bootup
@@ -35,12 +35,12 @@
function rescue_detect_keypress() {
// How long do you want the script to wait before moving on (in seconds)
$timeout=3;
- echo "Press R to enter Recovery Mode or press I to enter installer.\n\n";
+ echo "Press R to enter Recovery Mode or press I to launch installer.\n\n";
echo "Recovery mode can assist by rescuing config.xml from a \n";
- echo "installed hard disk that is having problems, etc.\n\n";
- echo "The installer may be invoked now if you do\n";
- echo "not wish to boot into the liveCD.\n\n"
- echo "Timeout (seconds): {$timeout}\n";
+ echo "broken hard disk installation, etc.\n\n";
+ echo "Alternatively the installer may be invoked now \n";
+ echo "if you do not wish to boot into the liveCD.\n\n"
+ echo "Timeout before auto boot continues (seconds): {$timeout}\n";
$key = null;
while(!in_array($key, array("r","R"))) {
echo "\033[08m{$timeout}\n";
@@ -53,7 +53,7 @@ function rescue_detect_keypress() {
if ($timeout == 0)
break;
}
- // If r was pressed do our logic here
+ // If R or I was pressed do our logic here
if (in_array($key, array("r", "R"))) {
system("env TERM=vt102 /scripts/lua_installer_rescue");
} elseif (in_array($key, array("i", "I"))) {
OpenPOWER on IntegriCloud