--- trunk/syslog-ng/syslog-ng.conf 2007/05/08 20:52:56 153 +++ trunk/syslog-ng/syslog-ng.conf 2009/10/28 00:35:18 909 @@ -4,7 +4,7 @@ # Global options: -options { sync(0); +options { flush_lines(0); time_reopen(10); log_fifo_size(1000); long_hostnames(off); @@ -23,7 +23,7 @@ source src { unix-stream("/dev/log"); internal(); - pipe("/proc/kmsg"); + file("/proc/kmsg"); }; # If you wish to get logs from remote machine you should uncomment @@ -37,7 +37,6 @@ # standart logfiles destination auth { file("/var/log/auth.log"); }; -destination syslog { file("/var/log/syslog"); }; destination cron { file("/var/log/cron.log"); }; destination daemon { file("/var/log/daemon.log"); }; destination kern { file("/var/log/kern.log"); }; @@ -98,7 +97,6 @@ # Log pathes: log { source(src); filter(f_authpriv); destination(auth); }; -log { source(src); filter(f_syslog); destination(syslog); }; log { source(src); filter(f_cron); destination(cron); }; log { source(src); filter(f_daemon); destination(daemon); }; log { source(src); filter(f_kern); destination(kern); };