X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fsyslog-ng%2Ftemplates%2Fsyslog-ng.conf.erb;h=60ac374efd3b32c8759c4190c2ab638088fd5336;hb=7e9f3801f497c8f0a05094e04656f059fc903e56;hp=8ea828d69b89da9ee743031baa20b7e3560ae067;hpb=60d27bc87d2153f42d1fb114d3b48fbde3720226;p=mirror%2Fdsa-puppet.git diff --git a/modules/syslog-ng/templates/syslog-ng.conf.erb b/modules/syslog-ng/templates/syslog-ng.conf.erb index 8ea828d69..60ac374ef 100644 --- a/modules/syslog-ng/templates/syslog-ng.conf.erb +++ b/modules/syslog-ng/templates/syslog-ng.conf.erb @@ -1,6 +1,9 @@ -<%- if has_variable?("syslogversion") and syslogversion.to_s == "3" -%> +<%- if has_variable?("syslogversion") and syslogversion.to_s == "3.1" -%> @version: 3.0 <%- end -%> +<%- if has_variable?("syslogversion") and syslogversion.to_s == "3.3" -%> +@version: 3.3 +<%- end -%> ## ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE. ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git @@ -24,7 +27,7 @@ options { # disable the chained hostname format in logs # (default is enabled) - chain_hostnames(0); + chain_hostnames(1); # the time to wait before a died connection is re-established # (default is 60) @@ -42,7 +45,12 @@ options { #sync(0); # the number of lines fitting in the output queue +<%- if has_variable?("syslogversion") and syslogversion.to_s == "3.1" -%> log_fifo_size(2048); +<%- end -%> +<%- if has_variable?("syslogversion") and syslogversion.to_s == "3.3" -%> + log_fifo_size(10000); +<%- end -%> # enable or disable directory creation for destination files create_dirs(yes); @@ -82,11 +90,7 @@ options { # is not a real hostname. bad_hostname("^gconfd$"); -<%- if (hostname == "heininen") || (hostname == "lotti") -%> - # we trust our mutual authenticated syslog clients - keep_hostname(yes); -<%- end -%> - + keep_hostname(no); }; @@ -102,22 +106,14 @@ source s_local { # function to send logs to) unix-stream("/dev/log"); # messages from the kernel -<%- if has_variable?("syslogversion") and syslogversion.to_s == "2" -%> - file("/proc/kmsg" log_prefix("kernel: ")); -<%- else -%> file("/proc/kmsg" program_override("kernel: ")); -<%- end -%> <%- else -%> # standard Linux log source (this is the default place for the syslog() # function to send logs to) unix-dgram("/var/run/log"); # messages from the kernel -<%- if has_variable?("syslogversion") and syslogversion.to_s == "2" -%> - file("/dev/klog" log_prefix("kernel: ")); -<%- else -%> file("/dev/klog" program_override("kernel: ")); <%- end -%> -<%- end -%> <%- if hostname == "paganini" -%> # use the following line if you want to receive remote UDP logging messages # (this is equivalent to the "-r" syslogd flag) @@ -148,7 +144,7 @@ destination df_daemon { file("/var/log/daemon.log"); }; destination df_kern { file("/var/log/kern.log"); }; destination df_lpr { file("/var/log/lpr.log"); }; destination df_mail { file("/var/log/mail.log" group(maillog)); }; -destination df_mail_info { file("/var/log/mail.info" group(maillog)); }; +# destination df_mail_info { file("/var/log/mail.info" group(maillog)); }; destination df_mail_warn { file("/var/log/mail.warn" group(maillog)); }; destination df_mail_err { file("/var/log/mail.err" group(maillog)); }; destination df_user { file("/var/log/user.log" perm(0644)); }; @@ -314,12 +310,12 @@ log { }; # mail.info -/var/log/mail.info -log { - source(s_local); - filter(f_mail); - filter(f_at_least_info); - destination(df_mail_info); -}; +#log { +# source(s_local); +# filter(f_mail); +# filter(f_at_least_info); +# destination(df_mail_info); +#}; # mail.warn -/var/log/mail.warn log { @@ -403,7 +399,6 @@ log { <%- end -%> -<%- if has_variable?("syslogversion") and syslogversion.to_s == "3" -%> <%- if hostname != "heininen" -%> destination loghost-heininen { tcp("heininen.debian.org" port (5140) @@ -434,7 +429,6 @@ log { destination(loghost-lotti); <%- end -%> }; -<%- end -%>