set into the rdiff config, so 'sshoptions = false' which results in the
host attempting to connect to a hostname called 'false'.
This change only includes it if the value is not 'false'.
if VersionComparer.versioncmp(Puppet.version,'0.24.6') >= 0
%w{type host directory user sshoptions}.each do |v|
- if has_variable?(v)
+ if has_variable?(v) and instance_variable_get("@#{v}").to_s != "false"
-%>
<%= v + ' = ' + instance_variable_get("@#{v}").to_s %>
<%-