Skip to content
Snippets Groups Projects
Commit 326d57f2 authored by Adam Lewenberg's avatar Adam Lewenberg
Browse files

sshd_config whitespace cleanup

parent c193e736
No related branches found
No related tags found
No related merge requests found
...@@ -8,25 +8,26 @@ ...@@ -8,25 +8,26 @@
# Split the ports at the commas. # Split the ports at the commas.
ports = @listen_ports.split(',') ports = @listen_ports.split(',')
ports.each do |port| ports.each do |port|
-%> -%>
Port <%= port %> Port <%= port %>
<% <%-
end end
-%> -%>
<% <%-
if (@listen_addresses != 'all') if (@listen_addresses != 'all')
# Split the addresses at the commas. # Split the addresses at the commas.
addresses = @listen_addresses.split(',') addresses = @listen_addresses.split(',')
addresses.each do |address| addresses.each do |address|
-%> -%>
ListenAddress <%= address %> ListenAddress <%= address %>
<% <%-
end end
end
-%> -%>
<%-
end
-%>
# Only support protocol version 2. # Only support protocol version 2.
Protocol 2 Protocol 2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment