replace rsyslog with syslog-ng

This commit is contained in:
Sebastian Hugentobler 2017-02-14 14:30:38 +01:00
parent 4f84d27349
commit 6b1d8cfcdf
5 changed files with 29 additions and 52 deletions

View file

@ -0,0 +1,24 @@
@version: 3.7
options {
stats_freq (0);
time_reopen (10);
chain_hostnames (off);
use_dns (no);
use_fqdn (no);
keep_hostname (yes);
};
source s_local {
unix-dgram("/dev/log");
internal();
};
destination catchall {
pipe("/dev/stdout");
};
log {
source(s_local);
destination(catchall);
};