From 3663cf1e2a9b8ac73e76f1ac18dffc8274b1fe65 Mon Sep 17 00:00:00 2001
From: Roy Marples <roy@marples.name>
Date: Sat, 10 May 2008 10:04:34 +0000
Subject: Only launch single user when RUNLEVEL == S, #74.

---
 src/rc/rc.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

(limited to 'src/rc')

diff --git a/src/rc/rc.c b/src/rc/rc.c
index d5e9f34c..af1eb37b 100644
--- a/src/rc/rc.c
+++ b/src/rc/rc.c
@@ -338,12 +338,13 @@ static void sulogin(bool cont)
 	if (! cont) {
 		rc_logger_close();
 #ifdef __linux__
-		execl("/sbin/sulogin", "/sbin/sulogin", (char *) NULL);
-		eerrorx("%s: unable to exec `/sbin/sulogin': %s",
-			applet, strerror(errno));
-#else
-		exit(EXIT_SUCCESS);
+		if (RUNLEVEL && strcmp(RUNLEVEL, "S") == 0) {
+			execl("/sbin/sulogin", "/sbin/sulogin", (char *) NULL);
+			eerrorx("%s: unable to exec `/sbin/sulogin': %s",
+				applet, strerror(errno));
+		}
 #endif
+		exit(EXIT_SUCCESS);
 	}
 
 #ifdef __linux__
-- 
cgit v1.2.3