ubuntu-buildroot/package/syslog-ng/syslog-ng.conf

17 lines
221 B
Plaintext
Raw Normal View History

2024-04-01 15:19:46 +00:00
@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);
};