diff options
Diffstat (limited to 'testing/syslog-ng/syslog-ng-destination.std')
-rw-r--r-- | testing/syslog-ng/syslog-ng-destination.std | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/syslog-ng/syslog-ng-destination.std b/testing/syslog-ng/syslog-ng-destination.std new file mode 100644 index 0000000000..93bc3030af --- /dev/null +++ b/testing/syslog-ng/syslog-ng-destination.std @@ -0,0 +1,22 @@ +# --------------------------------------------------------------------------------- +# Default syslog-ng standard log files; Do not edit this file! +# append log file entry with line on a file: syslog-ng-destination.<package> +# --------------------------------------------------------------------------------- + destination df_auth { file("/var/log/auth.log"); }; + destination df_kern { file("/var/log/kern.log"); }; + destination df_mail { file("/var/log/mail.log"); }; + destination df_error { file("/var/log/error.log"); }; +# these files are meant for the mail system log files +# and provide re-usable destinations for {mail,cron,...}.info, +# {mail,cron,...}.notice, etc. + destination df_facility_dot_info { file("/var/log/$FACILITY.info"); }; + destination df_facility_dot_notice { file("/var/log/$FACILITY.notice"); }; + destination df_facility_dot_warn { file("/var/log/$FACILITY.warn"); }; + destination df_facility_dot_err { file("/var/log/$FACILITY.err"); }; + destination df_facility_dot_crit { file("/var/log/$FACILITY.crit"); }; +# some more classical and useful files found in standard syslog configurations + destination df_debug { file("/var/log/debug"); }; + destination df_messages { file("/var/log/messages"); }; +# consoles +# this will send messages to everyone logged in + destination du_all { usertty("*"); }; |