summaryrefslogtreecommitdiffstats
path: root/etc/rc.initial
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-08-11 22:07:05 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-08-11 22:07:05 +0000
commit73de2be123b65ae56ecd9b338234ad4442f1c422 (patch)
treef0b7e5795ae599067bb0cd36e88047068db7996b /etc/rc.initial
parent79675a4bf79000db03e028ddb9cccb6cd58e577b (diff)
downloadpfsense-73de2be123b65ae56ecd9b338234ad4442f1c422.zip
pfsense-73de2be123b65ae56ecd9b338234ad4442f1c422.tar.gz
Do not attempt to launch the installer if the script does not exist (already installed).
Diffstat (limited to 'etc/rc.initial')
-rwxr-xr-xetc/rc.initial4
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/rc.initial b/etc/rc.initial
index 7589027..557d2e0 100755
--- a/etc/rc.initial
+++ b/etc/rc.initial
@@ -104,7 +104,9 @@ case ${opmode} in
/usr/sbin/tcpdump -n -e -ttt -i pflog0
;;
installer)
- /scripts/lua_installer
+ if [ -e /scripts/lua_installer ]; then
+ /scripts/lua_installer
+ fi
;;
99)
if grep "$WORD" "$CONFIG"
OpenPOWER on IntegriCloud