summaryrefslogtreecommitdiffstats
path: root/etc/rc.initial
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-07-01 20:05:29 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-07-01 20:05:29 +0000
commitd8d46c26227380a0be8e3eb346c0c6378ca0f34b (patch)
tree0463c8474801decff4ecdb652a1b0f990b645912 /etc/rc.initial
parentde8fc79a73299ab08dba7575d3729d2f4fe4b0de (diff)
downloadpfsense-d8d46c26227380a0be8e3eb346c0c6378ca0f34b.zip
pfsense-d8d46c26227380a0be8e3eb346c0c6378ca0f34b.tar.gz
Move sleep statement to do loop when option entered is ""
Helps work around - Ticket #1021
Diffstat (limited to 'etc/rc.initial')
-rwxr-xr-xetc/rc.initial21
1 files changed, 11 insertions, 10 deletions
diff --git a/etc/rc.initial b/etc/rc.initial
index ddcfec4..e0c2a40 100755
--- a/etc/rc.initial
+++ b/etc/rc.initial
@@ -143,17 +143,18 @@ case ${opmode} in
fi
;;
100)
- if grep "$WORD" "$CONFIG"
- then
- links "https://localhost"
- else
- links "http://localhost"
- fi
- ;;
+ if grep "$WORD" "$CONFIG"
+ then
+ links "https://localhost"
+ else
+ links "http://localhost"
+ fi
+ ;;
+"")
+ echo -n "Press CTRL-C to continue."
+ sleep 1000000
+ ;;
esac
done
-echo One moment please...
-
-sleep 10
OpenPOWER on IntegriCloud