9fc0d3a4e7
Updated upstream URL of patch file. Release notes: https://axoflow.com/axosyslog-release-4-2/ https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-4.2.0 Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Reviewed-by: Chris Packham <judge.packham@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
17 lines
220 B
Plaintext
17 lines
220 B
Plaintext
@version: 4.2
|
|
|
|
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);
|
|
};
|