From c65553ddea02969dc95d2c203442deb5be5ce3f4 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 5 Jul 2013 10:51:46 +0200 Subject: [PATCH] src/core/manager.c:manager_get_show_status() check if console is in use Do not print on console, if a service explicitly reserved the active console tty. --- src/core/manager.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/manager.c b/src/core/manager.c index 6128194..6fd3a87 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -2644,6 +2644,9 @@ static bool manager_get_show_status(Manager *m) { if (m->show_status) return true; + if (m->n_on_console) + return false; + /* If Plymouth is running make sure we show the status, so * that there's something nice to see when people press Esc */ -- 1.8.3.1