diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-10-26 12:34:30 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-10-26 12:34:30 -0200 |
commit | 381cf73b5920c3f4271f009810288dfee961a7e7 (patch) | |
tree | 78ddedb8aba23b35e5f8d67aeb1dc47de0b9545e | |
parent | 1c9401836b2d267845ce48617fe0aa3d0d5453fe (diff) | |
download | puppet-backupninja-381cf73b5920c3f4271f009810288dfee961a7e7.tar.gz puppet-backupninja-381cf73b5920c3f4271f009810288dfee961a7e7.tar.bz2 |
Variable deprecation rollback
-rw-r--r-- | templates/sys.conf.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/sys.conf.erb b/templates/sys.conf.erb index 84297d3..b8a542a 100644 --- a/templates/sys.conf.erb +++ b/templates/sys.conf.erb @@ -3,7 +3,7 @@ # the next time Puppet runs. Please make configuration changes to this # service in Puppet. -<% %w{@parentdir @packagesfile @partitionsfile @hardwarefile}.each do |v| +<% %w{parentdir packagesfile partitionsfile hardwarefile}.each do |v| if send(v) -%><%= v + ' = ' + send(v) + "\n" %><% end |