From 9c98ee85df45ccca8495a92286769e7e2f2c75a3 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sat, 2 Jul 2011 22:40:29 -0400 Subject: [PATCH] If rc.local exists launch it --- etc/rc.initial | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/etc/rc.initial b/etc/rc.initial index 3d600f14a5..097080c43c 100755 --- a/etc/rc.initial +++ b/etc/rc.initial @@ -24,6 +24,11 @@ if [ -f "/tmp/donotbootup" ]; then exit fi +if [ -f /etc/rc.local ]; then + echo ">>> Launching rc.local" + sh /etc/rc.local +fi + CONFIG="/cf/conf/config.xml" WORD="https"