summaryrefslogtreecommitdiffstats
path: root/etc/rc.initial
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-06-19 01:51:29 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-06-19 01:51:29 +0000
commit2730fde3975d2bff0e09bde84af746656459b26d (patch)
treef2c43bf83eb27bb18edadc2f8c5b201b8f195688 /etc/rc.initial
parentec3db059ef6a460c7fd68ad4d7d9d8451bd31a55 (diff)
downloadpfsense-2730fde3975d2bff0e09bde84af746656459b26d.zip
pfsense-2730fde3975d2bff0e09bde84af746656459b26d.tar.gz
Correct test for PLATFORM
Diffstat (limited to 'etc/rc.initial')
-rwxr-xr-xetc/rc.initial6
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/rc.initial b/etc/rc.initial
index ef55668..89b4b33 100755
--- a/etc/rc.initial
+++ b/etc/rc.initial
@@ -53,7 +53,11 @@ echo " 8) Shell"
echo " 9) PFtop"
echo "10) Traffic Logs"
echo
-[ "$PLATFORM" = "cdrom" ] || echo "installer) Install pfSense to your hard drive" && echo
+
+if [ "$PLATFORM" = "cdrom" ]; then
+ echo "installer) Install pfSense to your hard drive"
+ echo
+fi
read -p "Enter a number: " opmode
echo
OpenPOWER on IntegriCloud