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 /Makefile.am | |
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 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 311ff09d4e..60cb991272 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3247,6 +3247,8 @@ libsystemd_journal_core_la_SOURCES = \ src/journal/journald-server.h \ src/journal/journald-console.c \ src/journal/journald-console.h \ + src/journal/journald-wall.c \ + src/journal/journald-wall.h \ src/journal/journald-native.c \ src/journal/journald-native.h \ src/journal/journald-rate-limit.c \ |