diff options
author | Sebastian Thorarensen <sebth@naju.se> | 2014-03-14 00:38:15 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-03-14 22:05:25 +0100 |
commit | 40b71e89bae4e51768db4dc50ec64c1e9c96eec4 (patch) | |
tree | 39de34bcee5d996a8e98ef792fc7201276b0cf63 /src/journal/journald.conf | |
parent | 9003d9b0d628be059922e522fd35f9c5b4d8b039 (diff) |
journald: add support for wall forwarding
This will let journald forward logs as messages sent to all logged in
users (like wall).
Two options are added:
* ForwardToWall (default yes)
* MaxLevelWall (default emerg)
'ForwardToWall' is overridable by kernel command line option
'systemd.journald.forward_to_wall'.
This is used to emulate the traditional syslogd behaviour of sending
emergency messages to all logged in users.
Diffstat (limited to 'src/journal/journald.conf')
-rw-r--r-- | src/journal/journald.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/journal/journald.conf b/src/journal/journald.conf index 54f6833a17..d106d00b5e 100644 --- a/src/journal/journald.conf +++ b/src/journal/journald.conf @@ -26,8 +26,10 @@ #ForwardToSyslog=yes #ForwardToKMsg=no #ForwardToConsole=no +#ForwardToWall=yes #TTYPath=/dev/console #MaxLevelStore=debug #MaxLevelSyslog=debug #MaxLevelKMsg=notice #MaxLevelConsole=info +#MaxLevelWall=emerg |