From: Martin Pitt Date: Fri, 28 Nov 2014 13:43:25 +0000 (+0100) Subject: Re-enable journal forwarding to syslog X-Git-Tag: archive/raspbian/252.6-1+rpi1^2~15 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c958e7c92500a54ba0f6b6186ff160d03e56e29c;p=systemd.git Re-enable journal forwarding to syslog Revert upstream commit 46b131574fdd7d77 for now, until Debian's sysloggers can/do all read from the journal directly. See http://lists.freedesktop.org/archives/systemd-devel/2014-November/025550.html for details. Once we grow a journal.conf.d/ directory, sysloggers can be moved to pulling from the journal one by one and disable forwarding again in such a conf.d snippet. Gbp-Pq: Topic debian Gbp-Pq: Name Re-enable-journal-forwarding-to-syslog.patch --- diff --git a/man/journald.conf.xml b/man/journald.conf.xml index 24cee4c8..185e1dc9 100644 --- a/man/journald.conf.xml +++ b/man/journald.conf.xml @@ -356,7 +356,7 @@ traditional syslog daemon, to the kernel log buffer (kmsg), to the system console, or sent as wall messages to all logged-in users. These options take boolean arguments. If forwarding to syslog is enabled but nothing reads messages from the socket, forwarding to syslog has no effect. By default, - only forwarding to wall is enabled. These settings may be overridden at boot time with the kernel + only forwarding to syslog and wall is enabled. These settings may be overridden at boot time with the kernel command line options systemd.journald.forward_to_syslog, systemd.journald.forward_to_kmsg, systemd.journald.forward_to_console, and diff --git a/src/journal/journald-server.c b/src/journal/journald-server.c index b4ffd38f..9e44ec75 100644 --- a/src/journal/journald-server.c +++ b/src/journal/journald-server.c @@ -2285,6 +2285,7 @@ int server_init(Server *s, const char *namespace) { .ratelimit_interval = DEFAULT_RATE_LIMIT_INTERVAL, .ratelimit_burst = DEFAULT_RATE_LIMIT_BURST, + .forward_to_syslog = true, .forward_to_wall = true, .max_file_usec = DEFAULT_MAX_FILE_USEC, diff --git a/src/journal/journald.conf b/src/journal/journald.conf index 5a60a9d3..64f4d4be 100644 --- a/src/journal/journald.conf +++ b/src/journal/journald.conf @@ -32,7 +32,7 @@ #RuntimeMaxFiles=100 #MaxRetentionSec= #MaxFileSec=1month -#ForwardToSyslog=no +#ForwardToSyslog=yes #ForwardToKMsg=no #ForwardToConsole=no #ForwardToWall=yes