kumquat-buildroot/package/syslog-ng/syslog-ng.conf
Chris Packham 683563da80 package/syslog-ng: Bump version to 4.1.1
Bump version to 4.1.1 and update sample config.

Signed-off-by: Chris Packham <judge.packham@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2023-05-08 21:41:50 +02:00

17 lines
220 B
Plaintext

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