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