diff options
author | Iago López Galeiras <iago@endocode.com> | 2015-06-30 15:08:49 +0200 |
---|---|---|
committer | Iago López Galeiras <iago@endocode.com> | 2015-06-30 15:13:57 +0200 |
commit | 10f00ff17b9c9b55dc77c99797d27cb819fa5fdf (patch) | |
tree | e81d6b47ff690a4da6230c4cabc837a06c85f218 /src/core | |
parent | 8914ea0e90f2c9316dcccb6402ff86339eb195e1 (diff) |
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.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/main.c b/src/core/main.c index 332453a0ea..523f0ce020 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"; |