diff --git a/templates/ssh_config.erb b/templates/ssh_config.erb index 558822ee9..030d76107 100644 --- a/templates/ssh_config.erb +++ b/templates/ssh_config.erb @@ -1,7 +1,7 @@ # File managed by Puppet <%- scope.lookupvar('ssh::client::merged_options').each do |k, v| -%> -<%- if v.is_a(Hash) -%> +<%- if v.is_a?(Hash) -%> <%= k %> <%- v.each do |key, value| -%> <%= key %> <%= value %> diff --git a/templates/sshd_config.erb b/templates/sshd_config.erb index cc0239acc..95581d2b5 100644 --- a/templates/sshd_config.erb +++ b/templates/sshd_config.erb @@ -1,7 +1,7 @@ # File is managed by Puppet <%- scope.lookupvar('ssh::server::merged_options').each do |k, v| -%> -<%- if v.is_a(Hash) -%> +<%- if v.is_a?(Hash) -%> <%= k %> <%- v.each do |key, value| -%> <%= key %> <%= value %>