From 10f00ff17b9c9b55dc77c99797d27cb819fa5fdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iago=20L=C3=B3pez=20Galeiras?= Date: Tue, 30 Jun 2015 15:08:49 +0200 Subject: [PATCH] core: handle --log-target=null when calling systemd-shutdown When shutting down, if systemd was started with --log-target=null, systemd-shutdown was being called with --log-target=console. --- src/core/main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/main.c b/src/core/main.c index 332453a0ea0..523f0ce0206 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -1995,6 +1995,10 @@ finish: command_line[pos++] = "kmsg"; break; + case LOG_TARGET_NULL: + command_line[pos++] = "null"; + break; + case LOG_TARGET_CONSOLE: default: command_line[pos++] = "console";