Announcement: - https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-4.4.0 - https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-4.5.0 - https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-4.6.0 - https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-4.7.0 - https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-4.7.1 Bump info: - sha256 update for COPYING:52e9e10053
- json-c is now a hard-dependency:d9220c79b2
- enable-cloud-auth requires curl https://github.com/syslog-ng/syslog-ng/pull/4755 - 0001-fix-build-on-uclibc.patch upstream:5100a11a83
and468df07d80
- 0002-lib-transport-tls-context.c-fix-libressl-build.patch upstream:065c09c522
Signed-off-by: Thomas Devoogdt <thomas.devoogdt@barco.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
17 lines
220 B
Plaintext
17 lines
220 B
Plaintext
@version: 4.7
|
|
|
|
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);
|
|
};
|