From: Heiko Z. <smi...@us...> - 2004-05-20 01:06:48
|
Update of /cvsroot/devil-linux/build/config/etc/syslog-ng In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15716/config/etc/syslog-ng Modified Files: syslog-ng.conf Log Message: - a bunch of software updates - fixed a bug in the syslog-ng.conf file which causes /dev/log to be closed during a reload command (use stream instead of dgram) Index: syslog-ng.conf =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/syslog-ng/syslog-ng.conf,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- syslog-ng.conf 17 Dec 2002 19:50:13 -0000 1.7 +++ syslog-ng.conf 20 May 2004 01:06:38 -0000 1.8 @@ -6,7 +6,7 @@ ##################################################################### # define the source pipe for all local messages ##################################################################### -source src { unix-dgram("/dev/log"); internal(); }; +source src { pipe ("/proc/kmsg" log_prefix("kernel: ")); unix-stream("/dev/log"); internal(); }; ##################################################################### # print all messages on tty10 |