Files
rpi-buildroot/package/syslog-ng/syslog-ng.conf
Thomas Devoogdt 4549dce1e3 package/syslog-ng: bump to 4.8.1
Announcement:
 - https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-4.8.0
 - https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-4.8.1

Signed-off-by: Thomas Devoogdt <thomas@devoogdt.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 18630db8e8)
Signed-off-by: Titouan Christophe <titouan.christophe@mind.be>
2025-09-30 10:20:41 +02:00

17 lines
220 B
Plaintext

@version: 4.8
source s_sys {
file("/proc/kmsg" program_override("kernel"));
unix-stream ("/dev/log");
internal();
};
destination d_all {
file("/var/log/messages");
};
log {
source(s_sys);
destination(d_all);
};