Fix jinja spacing mistake for unknown options

When specifying multiple unknown ssh options, they would all appear on
the same line.
This commit is contained in:
Skyler Berg 2014-11-18 14:58:57 -08:00
parent 1542a3592f
commit a83409182f

View File

@ -140,7 +140,7 @@
{%- for keyword in sshd_config.keys() %}
{#- Matches have to be at the bottem and should be handled differently -#}
{%- if not keyword in processed_options and keyword != 'matches' -%}
{#- send a blank default as it doesn't matter -#}
{#- send a blank default as it doesn't matter #}
{{ render_option(keyword, '') }}
{%- endif -%}
{%- endfor %}