18 Oct
2001
18 Oct
'01
8:45 a.m.
in normal syslog i use *.=info;*.=notice;*.=debug;*.warn /dev/tty12 to have it dump to tty12 how can i do that in syslog-ng ?
19 Oct
19 Oct
5:35 p.m.
Hi, Dustin!
in normal syslog i use *.=info;*.=notice;*.=debug;*.warn /dev/tty12 to have it dump to tty12 how can i do that in syslog-ng ?
Specify some source (called foobar here) and something like this: filter f_tty12 { level (info, notice, debug, warn..panic); }; destination d_tty12 { file ("/dev/tty12"); }; log { source (foobar); filter (f_tty12); destination (d_tty12); }; In hope to have helped you. bye.baltasar ::: B A L T A S A R C E V C mailto: baltasar@cevc-topp.de Tel.: +49 89 99020515
8709
Age (days ago)
8710
Last active (days ago)
1 comments
2 participants
participants (2)
-
Baltasar Cevc
-
Dustin H