X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fsyslog-ng%2Ftemplates%2Fsyslog-ng.conf.erb;h=98c2fb2fe2c8163027254e1a16244733c865ed72;hb=cdce3c38b881b97127970246371b344148a3d8bd;hp=bd9da2a380e24236b7ed31001ee850217a520cd4;hpb=86a4e436853744ae30a92ccc296a4866ff8b54f6;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 bd9da2a38..98c2fb2fe 100644 --- a/modules/syslog-ng/templates/syslog-ng.conf.erb +++ b/modules/syslog-ng/templates/syslog-ng.conf.erb @@ -1,9 +1,13 @@ <%- if has_variable?("syslogversion") and syslogversion.to_s == "3.1" -%> @version: 3.0 -<%- end -%> -<%- if has_variable?("syslogversion") and syslogversion.to_s == "3.3" -%> +<%- elsif has_variable?("syslogversion") and syslogversion.to_s == "3.5" -%> +@version: 3.5 +@include "scl.conf" +<%- else -%> @version: 3.3 +@include "scl.conf" <%- 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 @@ -47,8 +51,7 @@ options { # 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" -%> +<%- else -%> log_fifo_size(10000); <%- end -%> @@ -93,7 +96,7 @@ options { keep_hostname(no); # We believe our own clock more than we believe the client clock. - keep_timestamp(no) + keep_timestamp(no); }; @@ -104,27 +107,18 @@ options { source s_local { # message generated by Syslog-NG internal(); -<%- if kernel == 'Linux' -%> +<%- if has_variable?("syslogversion") and syslogversion.to_s == "3.1" -%> # standard Linux log source (this is the default place for the syslog() # function to send logs to) unix-stream("/dev/log"); # messages from the kernel file("/proc/kmsg" program_override("kernel: ")); <%- 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 - file("/dev/klog" program_override("kernel: ")); -<%- 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) - udp(); + system(); <%- end -%> }; -<%- if (hostname == "lotti") || (hostname == "lully") -%> +<%- if (hostname == "lotti") || (hostname == "lully") || (hostname == "loghost-grnet-01") -%> source s_network { tcp6(port(5140) max-connections(200) tls( key_file("/etc/exim4/ssl/thishost.key") @@ -420,6 +414,16 @@ destination loghost-lully { ca_dir("/etc/ssl/debian/certs/") ) ); +}; + <%- end -%> + <%- if hostname != "loghost-grnet-01" -%> +destination loghost-loghost-grnet-01 { + tcp("loghost-grnet-01.debian.org" port (5140) + tls( key_file("/etc/ssl/debian/keys/thishost.key") + cert_file("/etc/ssl/debian/certs/thishost.crt") + ca_dir("/etc/ssl/debian/certs/") + ) + ); }; <%- end -%> @@ -431,11 +435,14 @@ log { <%- if hostname != "lully" -%> destination(loghost-lully); <%- end -%> + <%- if hostname != "loghost-grnet-01" -%> + destination(loghost-loghost-grnet-01); + <%- end -%> }; -<%- if (hostname == "lotti") || (hostname == "lully") -%> +<%- if (hostname == "lotti") || (hostname == "lully") || (hostname == "loghost-grnet-01") -%> ############################################################################### ########## ON LOG HOST ######################################################## ###############################################################################