diff options
author | Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org> | 2013-05-25 09:25:32 +0200 |
---|---|---|
committer | Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org> | 2013-05-25 09:28:03 +0200 |
commit | 26d86737c4f6bfb4b2e350b36fe85bd6cf04cd4b (patch) | |
tree | 3ad80fb804d9a4db151d9a5a1d284d79e683ff10 /testing/syslog-ng/syslog-ng-destination.std | |
parent | f64bfe77a6bde014a88ea2840b3a54e2281ccbbb (diff) | |
download | aports-26d86737c4f6bfb4b2e350b36fe85bd6cf04cd4b.tar.bz2 aports-26d86737c4f6bfb4b2e350b36fe85bd6cf04cd4b.tar.xz |
testing/syslog-ng: new aport
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("*"); }; |