kumquat-buildroot/package/syslog-ng/syslog-ng.conf
Chris Packham db63f65945 package/syslog-ng: Bump version to 3.38.1
Add new version. Remove patch that has been applied upstream. Update
hash for COPYING as it's text has changed to clarify some details but
the license remains LGP-2.0+L/GPL-2.0+.

Signed-off-by: Chris Packham <judge.packham@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-10-16 17:00:29 +02:00

17 lines
221 B
Plaintext

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