From a685cb872eb2d9ea5243cf1dda7a285c33aecbbf Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sat, 16 May 2009 15:48:04 -0400 Subject: Do not launch with tcsh -c, it appears to work at first glance without it. --- etc/rc.bootup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'etc/rc.bootup') diff --git a/etc/rc.bootup b/etc/rc.bootup index 261dbc6..cfc75f3 100755 --- a/etc/rc.bootup +++ b/etc/rc.bootup @@ -57,9 +57,9 @@ function rescue_detect_keypress() { } // If R or I was pressed do our logic here if (in_array($key, array("r", "R"))) { - system("env TERM=cons25 /bin/tcsh -c /scripts/lua_installer_rescue"); + system("env TERM=cons25 /scripts/lua_installer_rescue"); } elseif (in_array($key, array("i", "I"))) { - system("env TERM=cons25 /bin/tcsh -c /scripts/lua_installer"); + system("env TERM=cons25 /scripts/lua_installer"); if(file_exists("/tmp/install_complete")) { system("/etc/rc.reboot"); exit; -- cgit v1.1