diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/backupninja.conf.erb | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/templates/backupninja.conf.erb b/templates/backupninja.conf.erb index 7706a61..38f78c2 100644 --- a/templates/backupninja.conf.erb +++ b/templates/backupninja.conf.erb @@ -4,17 +4,17 @@  # service in Puppet.  loglevel = <%= @loglvl %> -when = <%= send(:when) %> +when = <%= @when %>  reportemail = <%= @reportemail %>  reportsuccess = <%= @reportsuccess ? 'yes' : 'no' %>  reportwarning = <%= @reportwarning ? 'yes' : 'no' %> -<% if reporthost.is_a? String -%> +<% if @reporthost.is_a? String -%>  <%= 'reporthost = ' + @reporthost %>  <% end -%> -<% if reportuser.is_a? String -%> +<% if @reportuser.is_a? String -%>  <%= 'reportuser = ' + @reportuser %>  <% end -%> -<% if reportdirectory.is_a? String -%> +<% if @reportdirectory.is_a? String -%>  <%= 'reportdirectory = ' + @reportdirectory %>  <% end -%>  logfile = <%= @logfile %> | 
