diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-19 11:25:11 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-19 11:25:11 -0300 |
commit | 44dbd2a5018b98f0a52d22bf6bfbd711cf808daa (patch) | |
tree | b50ada11512f3f4a8236b3b74b70182fb1f49505 | |
parent | 01e32b5549fad5ec719a8650f5dbfac739e9c2fd (diff) | |
download | puppet-backupninja-44dbd2a5018b98f0a52d22bf6bfbd711cf808daa.tar.gz puppet-backupninja-44dbd2a5018b98f0a52d22bf6bfbd711cf808daa.tar.bz2 |
Fix variable reference at rsync template
-rw-r--r-- | templates/rsync.conf.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/rsync.conf.erb b/templates/rsync.conf.erb index 0a7173c..e563838 100644 --- a/templates/rsync.conf.erb +++ b/templates/rsync.conf.erb @@ -13,7 +13,7 @@ end -%> [source] <% unless @from.empty? and @from.to_s != "false" -%> -from = <%= f@rom %> +from = <%= @from %> <% end -%> <%- %w{include exclude}.each do |v| if has_variable?(v) |