Enable banner setting
authorTollef Fog Heen <tfheen@err.no>
Sat, 13 Apr 2019 20:33:33 +0000 (22:33 +0200)
committerTollef Fog Heen <tfheen@err.no>
Sat, 13 Apr 2019 20:33:33 +0000 (22:33 +0200)
modules/ssh/templates/sshd_config.erb

index d7e197c..d3dff04 100644 (file)
@@ -52,10 +52,10 @@ PasswordAuthentication no
 <%=
   allnodeinfo = scope.lookupvar('site::allnodeinfo')
   out = ''
-  settings = '#  Banner "You are coming from a debian.org host."'
+  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 "
+      out += "Match Address "
       out += allnodeinfo[node]['ipHostNumber'].collect do |ipnum|
           if ipnum =~ /:/
               "#{ipnum}/128"
@@ -63,7 +63,7 @@ PasswordAuthentication no
               "#{ipnum}/32"
           end
       end.join(',')
-      out += "# #{node}"
+      out += " # #{node}"
       out += "\n"
       out += settings
       out += "\n\n"