]> git.pld-linux.org Git - packages/syslog-ng.git/commitdiff
- prefix destinations
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Fri, 16 Jan 2009 13:54:54 +0000 (13:54 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    syslog-ng.conf -> 1.30

syslog-ng.conf

index 522446374c532e6749cd0423bbe2ac5361b1301c..3981ddc51a70eac88b645d80f5126258f66f4bdb 100644 (file)
@@ -30,36 +30,36 @@ source s_sys        {
 # uncomment the line below if you want to setup syslog server
 #source s_net  { udp(); };
 
-#destination loghost   { udp("loghost" port(514)); };
-
-destination kern       { file("/var/log/kernel"); };
-destination messages   { file("/var/log/messages"); };
-destination authlog    { file("/var/log/secure"); };
-destination mail       { file("/var/log/maillog"); };
-destination uucp       { file("/var/log/spooler"); };
-destination debug      { file("/var/log/debug"); };
-destination cron       { file("/var/log/cron" owner(root) group(crontab) perm(0660)); };
-destination syslog     { file("/var/log/syslog"); };
-destination daemon     { file("/var/log/daemon"); };
-destination lpr                { file("/var/log/lpr"); };
-destination user       { file("/var/log/user"); };
-destination ppp                { file("/var/log/ppp"); };
-destination ftp                { file("/var/log/xferlog"); };
-destination audit      { file("/var/log/audit"); };
-destination postgres   { file("/var/log/pgsql"); };
-destination freshclam  { file("/var/log/freshclam.log"); };
+#destination d_loghost { udp("loghost" port(514)); };
+
+destination d_kern     { file("/var/log/kernel"); };
+destination d_messages { file("/var/log/messages"); };
+destination d_authlog  { file("/var/log/secure"); };
+destination d_mail     { file("/var/log/maillog"); };
+destination d_uucp     { file("/var/log/spooler"); };
+destination d_debug    { file("/var/log/debug"); };
+destination d_cron     { file("/var/log/cron" owner(root) group(crontab) perm(0660)); };
+destination d_syslog   { file("/var/log/syslog"); };
+destination d_daemon   { file("/var/log/daemon"); };
+destination d_lpr              { file("/var/log/lpr"); };
+destination d_user     { file("/var/log/user"); };
+destination d_ppp              { file("/var/log/ppp"); };
+destination d_ftp              { file("/var/log/xferlog"); };
+destination d_audit    { file("/var/log/audit"); };
+destination d_postgres { file("/var/log/pgsql"); };
+destination d_freshclam        { file("/var/log/freshclam.log"); };
 
 # Log iptables messages to separate file
-destination iptables   { file("/var/log/iptables"); };
+destination d_iptables { file("/var/log/iptables"); };
 
-destination console    { usertty("root"); };
-#destination console_all       { file("/dev/tty12"); };
+destination d_console  { usertty("root"); };
+#destination d_console_all     { file("/dev/tty12"); };
 
-destination xconsole   { pipe("/dev/xconsole"); };
+destination d_xconsole { pipe("/dev/xconsole"); };
 
-destination newscrit   { file("/var/log/news/news.crit" owner(news) group(news)); };
-destination newserr    { file("/var/log/news/news.err" owner(news) group(news)); };
-destination newsnotice { file("/var/log/news/news.notice" owner(news) group(news)); };
+destination d_newscrit { file("/var/log/news/news.crit" owner(news) group(news)); };
+destination d_newserr  { file("/var/log/news/news.err" owner(news) group(news)); };
+destination d_newsnotice       { file("/var/log/news/news.notice" owner(news) group(news)); };
 
 # Filters for standard syslog(3) facilities
 #filter f_audit                { facility(audit); };
@@ -99,37 +99,37 @@ filter f_ppp                { program(pppd) or program(chat); };
 filter f_postgres      { program(postgres); };
 filter f_iptables      { match("IN=[A-Za-z0-9\.]* OUT=[A-Za-z0-9\.]*"); };
 
-log { source(s_sys); filter(f_authpriv);       destination(authlog); };
-log { source(s_sys); filter(f_cron);           destination(cron); };
-log { source(s_sys); filter(f_daemon);         destination(daemon); };
-log { source(s_sys); filter(f_ftp);            destination(ftp); };
-log { source(s_sys); filter(f_kern);           destination(kern); };
-log { source(s_sys); filter(f_lpr);            destination(lpr); };
-log { source(s_sys); filter(f_mail);                   destination(mail); };
-log { source(s_sys); filter(f_news); filter(p_crit);   destination(uucp); };
-log { source(s_sys); filter(f_news); filter(p_crit);   destination(newscrit); };
-log { source(s_sys); filter(f_news); filter(p_err);    destination(newserr); };
-log { source(s_sys); filter(f_news); filter(p_warn);   destination(newsnotice); };
-log { source(s_sys); filter(f_news); filter(p_notice); destination(newsnotice); };
-log { source(s_sys); filter(f_news); filter(p_info);   destination(newsnotice); };
-log { source(s_sys); filter(f_news); filter(p_debug);  destination(newsnotice); };
-log { source(s_sys); filter(f_syslog);         destination(syslog); };
-log { source(s_sys); filter(f_user);           destination(user); };
-log { source(s_sys); filter(f_uucp);           destination(uucp); };
-
-log { source(s_sys); filter(p_debug);          destination(debug); };
-
-log { source(s_sys); filter(f_daemon); filter(f_ppp);          destination(ppp); };
-log { source(s_sys); filter(f_local6); filter(f_freshclam);    destination(freshclam); };
-log { source(s_sys); filter(f_local0); filter(f_postgres);     destination(postgres); };
-#log { source(s_sys); filter(f_iptables);      destination(iptables); };
-
-log { source(s_sys); filter(p_emergency);      destination(console); };
-#log { source(s_sys); destination(console_all); };
+log { source(s_sys); filter(f_authpriv);       destination(d_authlog); };
+log { source(s_sys); filter(f_cron);           destination(d_cron); };
+log { source(s_sys); filter(f_daemon);         destination(d_daemon); };
+log { source(s_sys); filter(f_ftp);            destination(d_ftp); };
+log { source(s_sys); filter(f_kern);           destination(d_kern); };
+log { source(s_sys); filter(f_lpr);            destination(d_lpr); };
+log { source(s_sys); filter(f_mail);                   destination(d_mail); };
+log { source(s_sys); filter(f_news); filter(p_crit);   destination(d_uucp); };
+log { source(s_sys); filter(f_news); filter(p_crit);   destination(d_newscrit); };
+log { source(s_sys); filter(f_news); filter(p_err);    destination(d_newserr); };
+log { source(s_sys); filter(f_news); filter(p_warn);   destination(d_newsnotice); };
+log { source(s_sys); filter(f_news); filter(p_notice); destination(d_newsnotice); };
+log { source(s_sys); filter(f_news); filter(p_info);   destination(d_newsnotice); };
+log { source(s_sys); filter(f_news); filter(p_debug);  destination(d_newsnotice); };
+log { source(s_sys); filter(f_syslog);         destination(d_syslog); };
+log { source(s_sys); filter(f_user);           destination(d_user); };
+log { source(s_sys); filter(f_uucp);           destination(d_uucp); };
+
+log { source(s_sys); filter(p_debug);          destination(d_debug); };
+
+log { source(s_sys); filter(f_daemon); filter(f_ppp);          destination(d_ppp); };
+log { source(s_sys); filter(f_local6); filter(f_freshclam);    destination(d_freshclam); };
+log { source(s_sys); filter(f_local0); filter(f_postgres);     destination(d_postgres); };
+#log { source(s_sys); filter(f_iptables);      destination(d_iptables); };
+
+log { source(s_sys); filter(p_emergency);      destination(d_console); };
+#log { source(s_sys); destination(d_console_all); };
 
 #  This is a catchall statement, and should catch all messages which were not
 #  accepted any of the previous statements.
-log { source(s_sys); destination(messages); flags(fallback); };
+log { source(s_sys); destination(d_messages); flags(fallback); };
 
 # Network syslogging
-#log { source(s_sys); destination(loghost); };
+#log { source(s_sys); destination(d_loghost); };
This page took 0.044026 seconds and 4 git commands to generate.