From a83409182f8fe7434488ee73adb728f64b2c4775 Mon Sep 17 00:00:00 2001 From: Skyler Berg Date: Tue, 18 Nov 2014 14:58:57 -0800 Subject: [PATCH] Fix jinja spacing mistake for unknown options When specifying multiple unknown ssh options, they would all appear on the same line. --- openssh/files/sshd_config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openssh/files/sshd_config b/openssh/files/sshd_config index e936654..4f2b3cb 100644 --- a/openssh/files/sshd_config +++ b/openssh/files/sshd_config @@ -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 %}