kumquat-buildroot/package/syslog-ng/syslog-ng.conf
Chris Packham 622f82c2f1 package/syslog-ng: bump version to 4.3.1
Update to latest version.

Release notes:
https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-4.3.1

Signed-off-by: Chris Packham <judge.packham@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023-09-14 23:08:06 +02:00

17 lines
220 B
Plaintext

@version: 4.3
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);
};