diff options
-rw-r--r-- | templates/rdiff.conf.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/rdiff.conf.erb b/templates/rdiff.conf.erb index 5e319a2..f5548e4 100644 --- a/templates/rdiff.conf.erb +++ b/templates/rdiff.conf.erb @@ -29,7 +29,7 @@ type = local [dest] <% %w{type host directory user sshoptions}.each do |v| - if has_variable?(v) - -%><%= v + ' = ' + get_instance_var("@#{v}") + "\n" %><% + if @scope.lookupvar(v) + -%><%= v + ' = ' + @scope.lookupvar(v) + "\n" %><% end end -%> |