From: Peter Palfrader Date: Wed, 28 Jul 2010 11:12:52 +0000 (+0200) Subject: Try something for syslog fu, III X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=fd2c08b5dd1290e76cced3da9c1c65dc40aa1adb;p=dsa-puppet.git Try something for syslog fu, III --- diff --git a/templates/syslog-ng.conf.erb b/templates/syslog-ng.conf.erb index e1abb156..35038e8d 100644 --- a/templates/syslog-ng.conf.erb +++ b/templates/syslog-ng.conf.erb @@ -1,4 +1,4 @@ -<%- if syslogversion and syslogversion.to_s == "3" -%> +<%- if has_variable?(syslogversion) and syslogversion.to_s == "3" -%> @version: 3.0 <%- end -%> ## @@ -102,7 +102,7 @@ source s_local { # function to send logs to) unix-stream("/dev/log"); # messages from the kernel -<%- if syslogversion and syslogversion.to_s == "2" -%> +<%- if has_variable?(syslogversion) and syslogversion.to_s == "2" -%> file("/proc/kmsg" log_prefix("kernel: ")); <%- else -%> file("/proc/kmsg" program_override("kernel: ")); @@ -112,7 +112,7 @@ source s_local { # function to send logs to) unix-dgram("/var/run/log"); # messages from the kernel -<%- if syslogversion and syslogversion.to_s == "2" -%> +<%- if has_variable?(syslogversion) and syslogversion.to_s == "2" -%> file("/dev/klog" log_prefix("kernel: ")); <%- else -%> file("/dev/klog" program_override("kernel: ")); @@ -404,7 +404,7 @@ log { <%- if hostname != "heininen" -%> - <%- if syslogversion and syslogversion.to_s == "3" -%> + <%- if has_variable?(syslogversion) and syslogversion.to_s == "3" -%> destination loghost-heininen { tcp("heininen.debian.org" port (5140) tls( key_file("/etc/ssl/debian/keys/thishost.key")