mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
https://github.com/syslog-ng/syslog-ng/blob/syslog-ng-4.11.0/NEWS.md Added sha256 tarball hash provided by upstream. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
17 lines
221 B
Plaintext
17 lines
221 B
Plaintext
@version: 4.11
|
|
|
|
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);
|
|
};
|