9fc0f6
From f64dc9cfd4f2fb79c3b46b2657961b407c6b3235 Mon Sep 17 00:00:00 2001
9fc0f6
From: Olivier Brunel <jjk@jjacky.com>
9fc0f6
Date: Fri, 20 Sep 2013 22:18:30 +0200
9fc0f6
Subject: [PATCH] Fix possible lack of status messages on shutdown/reboot
9fc0f6
9fc0f6
Since 31a7eb86 the output on console can be disabled to avoid colliding with
9fc0f6
gettys. However, it could also lead to a lack of messages during
9fc0f6
shutdown/reboot.
9fc0f6
---
9fc0f6
 src/core/job.c | 3 +++
9fc0f6
 1 file changed, 3 insertions(+)
9fc0f6
9fc0f6
diff --git a/src/core/job.c b/src/core/job.c
9fc0f6
index 5ea9803..7d2b994 100644
9fc0f6
--- a/src/core/job.c
9fc0f6
+++ b/src/core/job.c
9fc0f6
@@ -1099,6 +1099,9 @@ void job_shutdown_magic(Job *j) {
9fc0f6
         if (!unit_has_name(j->unit, SPECIAL_SHUTDOWN_TARGET))
9fc0f6
                 return;
9fc0f6
 
9fc0f6
+        /* In case messages on console has been disabled on boot */
9fc0f6
+        j->unit->manager->no_console_output = false;
9fc0f6
+
9fc0f6
         if (detect_container(NULL) > 0)
9fc0f6
                 return;
9fc0f6