diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-12-17 10:52:55 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-12-17 10:53:03 -0500 |
commit | 6141561c822c66ec5ad53c4fc440bab8d6d88f91 (patch) | |
tree | 068403ab91d422cc71c42c87e815fc806b48fc89 /etc | |
parent | 3aad955181e66906dba1197fddbb8d218bcc7d1d (diff) | |
download | pfsense-6141561c822c66ec5ad53c4fc440bab8d6d88f91.zip pfsense-6141561c822c66ec5ad53c4fc440bab8d6d88f91.tar.gz |
Add newline after 99 menu option. Otherwise it looks very strange.
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc.initial | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/rc.initial b/etc/rc.initial index 4d88bda..84c666c 100755 --- a/etc/rc.initial +++ b/etc/rc.initial @@ -73,7 +73,11 @@ echo " 4) Reset to factory defaults 12) ${product} Developer Shell" echo " 5) Reboot system 13) Upgrade from console" echo " 6) Halt system ${sshd_option}" echo " 7) Ping host ${option98}" -/bin/echo "${option99}" + +if [ "${option99}" != "" ]; then + /bin/echo "${option99}" + echo +fi read -p "Enter an option: " opmode echo |