f1d74108b1
Update to syslog-ng-3.34.1. Drop patch that has been applied upstream. Update version in config file. Signed-off-by: Chris Packham <judge.packham@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
17 lines
221 B
Plaintext
17 lines
221 B
Plaintext
@version: 3.34
|
|
|
|
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);
|
|
};
|