From 00d432fc10bfe200a910ad4b8b54fc44d4742b6b Mon Sep 17 00:00:00 2001 From: Tollef Fog Heen Date: Sat, 13 Apr 2019 22:32:11 +0200 Subject: [PATCH] A bit of formatting --- modules/ssh/templates/sshd_config.erb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/ssh/templates/sshd_config.erb b/modules/ssh/templates/sshd_config.erb index 32be972c6..d7e197cfa 100644 --- a/modules/ssh/templates/sshd_config.erb +++ b/modules/ssh/templates/sshd_config.erb @@ -55,7 +55,7 @@ PasswordAuthentication no settings = '# Banner "You are coming from a debian.org host."' allnodeinfo.keys.sort.each do |node| next unless allnodeinfo[node].has_key?('ipHostNumber') - out += "# Match Address # #{node}" + out += "# Match Address " out += allnodeinfo[node]['ipHostNumber'].collect do |ipnum| if ipnum =~ /:/ "#{ipnum}/128" @@ -63,8 +63,10 @@ PasswordAuthentication no "#{ipnum}/32" end end.join(',') + out += "# #{node}" out += "\n" out += settings + out += "\n\n" end out %> -- 2.20.1