diff options
author | intrigeri <intrigeri@boum.org> | 2010-12-15 22:20:08 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2010-12-15 22:20:08 +0100 |
commit | c0377ca7377ed9ab19e319996e7ec5ad3c179070 (patch) | |
tree | 64fb77d01776710f836826c0753c6d8c790a480c /templates | |
parent | 2d4f6d3522e8ef157763b2788de6dc71dc054be2 (diff) |
Apply fix from 67dc9a22 to Squeeze template as well.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/Debian/apticron_squeeze.erb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/templates/Debian/apticron_squeeze.erb b/templates/Debian/apticron_squeeze.erb index 3b8c9fd..b0aa975 100644 --- a/templates/Debian/apticron_squeeze.erb +++ b/templates/Debian/apticron_squeeze.erb @@ -25,9 +25,9 @@ LISTCHANGES_PROFILE="<%= apticron_listchanges_profile %>" # of "hostname -f" for the system name in the mails it generates # # SYSTEM="foobar.example.com" -<%- if has_variable?(apticron_system) and instance_variable_get("@#{apticron_system}").to_s != "false" -%> -<%= 'SYSTEM="' + instance_variable_get("@#{apticron_system}").to_s + '"' %> -<%- end %> +<%- if has_variable?('apticron_system') and instance_variable_get("@#{'apticron_system'}").to_s != "false" -%> +<%= 'SYSTEM="' + instance_variable_get("@#{'apticron_system'}").to_s + '"' %> +<%- end -%> # # Set IPADDRESSNUM if you would like to configure the maximal number of IP @@ -35,8 +35,8 @@ LISTCHANGES_PROFILE="<%= apticron_listchanges_profile %>" # family type (inet, inet6), if available. # # IPADDRESSNUM="1" -<%- if has_variable?(apticron_ipaddressnum) and instance_variable_get("@#{apticron_ipaddressnum}").to_s != "false" -%> -<%= 'IPADDRESSNUM="' + instance_variable_get("@#{apticron_ipaddressnum}").to_s + '"' %> +<%- if has_variable?('apticron_ipaddressnum') and instance_variable_get("@#{'apticron_ipaddressnum'}").to_s != "false" -%> +<%= 'IPADDRESSNUM="' + instance_variable_get("@#{'apticron_ipaddressnum'}").to_s + '"' %> <%- end -%> # @@ -45,8 +45,8 @@ LISTCHANGES_PROFILE="<%= apticron_listchanges_profile %>" # "ip" command # # IPADDRESSES="192.0.2.1 2001:db8:1:2:3::1" -<%- if has_variable?(apticron_ipaddresses) and instance_variable_get("@#{apticron_ipaddresses}").to_s != "false" -%> -<%= 'IPADDRESSES="' + instance_variable_get("@#{apticron_ipaddresses}").to_s + '"' %> +<%- if has_variable?('apticron_ipaddresses') and instance_variable_get("@#{'apticron_ipaddresses'}").to_s != "false" -%> +<%= 'IPADDRESSES="' + instance_variable_get("@#{'apticron_ipaddresses'}").to_s + '"' %> <%- end -%> # |