fix munin 1
[mirror/dsa-puppet.git] / modules / syslog-ng / templates / syslog-ng.conf.erb
index f5d5036..551b7db 100644 (file)
@@ -2,10 +2,11 @@
 @version: 3.0
 <%- elsif has_variable?("syslogversion") and syslogversion.to_s == "3.5" -%>
 @version: 3.5
+@include "scl.conf"
 <%- else -%>
 @version: 3.3
-<%- end -%>
 @include "scl.conf"
+<%- end -%>
 
 ##
 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
@@ -106,12 +107,20 @@ options {
 source s_local {
         # message generated by Syslog-NG
         internal();
+<%- 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 -%>
        system();
+<%- end -%>
 };
 
 <%- if (hostname == "lotti") || (hostname == "lully") || (hostname == "loghost-grnet-01") -%>
 source s_network {
-       tcp6(port(5140) max-connections(200)
+       tcp6(port(5140) max-connections(400)
                tls( key_file("/etc/exim4/ssl/thishost.key")
                     cert_file("/etc/exim4/ssl/thishost.crt")
                     ca_dir("/etc/exim4/ssl/")
@@ -390,7 +399,7 @@ log {
  <%- if hostname != "lotti" -%>
 destination loghost-lotti {
        tcp("lotti.debian.org" port (5140)
-               tls( key_file("/etc/ssl/debian/keys/thishost.key")
+               tls( key_file("/etc/ssl/private/thishost.key")
                     cert_file("/etc/ssl/debian/certs/thishost.crt")
                     ca_dir("/etc/ssl/debian/certs/")
                )
@@ -400,7 +409,7 @@ destination loghost-lotti {
   <%- if hostname != "lully" -%>
 destination loghost-lully {
        tcp("lully.debian.org" port (5140)
-               tls( key_file("/etc/ssl/debian/keys/thishost.key")
+               tls( key_file("/etc/ssl/private/thishost.key")
                     cert_file("/etc/ssl/debian/certs/thishost.crt")
                     ca_dir("/etc/ssl/debian/certs/")
                )
@@ -410,7 +419,7 @@ destination loghost-lully {
   <%- 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")
+               tls( key_file("/etc/ssl/private/thishost.key")
                     cert_file("/etc/ssl/debian/certs/thishost.crt")
                     ca_dir("/etc/ssl/debian/certs/")
                )