remove stray punctuation
[mirror/dsa-puppet.git] / modules / syslog_ng / templates / syslog-ng.conf.erb
index d68fe0c..bb35177 100644 (file)
@@ -3,6 +3,9 @@
 <%- elsif has_variable?("syslogversion") and @syslogversion.to_s == "3.5" -%>
 @version: 3.5
 @include "scl.conf"
+<%- elsif has_variable?("syslogversion") and @syslogversion.to_s == "3.8" -%>
+@version: 3.8
+@include "scl.conf"
 <%- else -%>
 @version: 3.3
 @include "scl.conf"
@@ -129,6 +132,16 @@ source s_network {
 };
 <%- end -%>
 
+<%- if (@hostname == "lully") -%>
+source s_network_fastly {
+       tcp6(port(5141) max-connections(100)
+               tls( key_file("/etc/exim4/ssl/thishost.key")
+                    cert_file("/etc/exim4/ssl/thishost.crt")
+                    peer-verify(optional-untrusted))
+       );
+};
+<%- end -%>
+
 
 ######
 # destinations
@@ -554,3 +567,11 @@ log { source(s_local);
       source(s_network);
       filter(f_syslog); destination(df_ALL_syslog); };
 <%- end -%>
+
+<%- if (@hostname == "lully") -%>
+destination fastly { file("/var/log/fastly.log"); };
+
+log { source(s_network_fastly);
+      destination(fastly); };
+
+<%- end -%>