From: Christian Schmidt Date: Sat, 15 Aug 2009 14:42:47 +0000 (+0200) Subject: Added kernel.log to syslog-ng. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=537cc5b0cc7a293ba05c16b4eb816cfa5bbc35c7;p=ipfire-3.x.git Added kernel.log to syslog-ng. --- diff --git a/config/syslog-ng/syslog-ng.conf b/config/syslog-ng/syslog-ng.conf index 6007991b3..a951f2649 100644 --- a/config/syslog-ng/syslog-ng.conf +++ b/config/syslog-ng/syslog-ng.conf @@ -45,6 +45,9 @@ destination messages { destination boot { file("/var/log/boot.log"); }; +destination kernel { + file("/var/log/kernel.log); + }; destination console { usertty("root"); }; @@ -115,3 +118,8 @@ log { filter(f_ssh); destination(ids); }; +log { + source(sys); + filter(f_kern); + destination(kernel); + };