]> git.ipfire.org Git - people/ms/systemd.git/commitdiff
main: never reset console unless pid=1, to make sure that we don't kill X when somebo...
authorLennart Poettering <lennart@poettering.net>
Fri, 23 Apr 2010 02:06:23 +0000 (04:06 +0200)
committerLennart Poettering <lennart@poettering.net>
Fri, 23 Apr 2010 02:06:23 +0000 (04:06 +0200)
main.c

diff --git a/main.c b/main.c
index 06ad42959bc8b057d0da9537d3f77db41e95ee39..0aa3796e878755fe3bce4df60f508c8d69fe9870 100644 (file)
--- a/main.c
+++ b/main.c
@@ -164,7 +164,7 @@ static void install_crash_handler(void) {
         assert_se(sigaction(SIGABRT, &sa, NULL) == 0);
 }
 
-static int console_setup(void) {
+static int console_setup(bool do_reset) {
         int tty_fd = -1, null_fd = -1, r = 0;
 
         /* If we are init, we connect stdout/stderr to /dev/console
@@ -188,8 +188,9 @@ static int console_setup(void) {
         assert(tty_fd >= 3);
         assert(null_fd >= 3);
 
-        if (reset_terminal(tty_fd) < 0)
-                log_error("Failed to reset /dev/console: %m");
+        if (do_reset)
+                if (reset_terminal(tty_fd) < 0)
+                        log_error("Failed to reset /dev/console: %m");
 
         if (dup2(tty_fd, STDOUT_FILENO) < 0 ||
             dup2(tty_fd, STDERR_FILENO) < 0 ||
@@ -612,8 +613,10 @@ int main(int argc, char *argv[]) {
                 umask(0);
         }
 
+        /* Reset the console, but only if this is really init and we
+         * are freshly booted */
         if (running_as == MANAGER_INIT)
-                console_setup();
+                console_setup(getpid() == 1 && !serialization);
 
         /* Make sure D-Bus doesn't fiddle with the SIGPIPE handlers */
         dbus_connection_set_change_sigpipe(FALSE);