From b24101264f6c13c5d2d907f5fb19be5562ed284d Mon Sep 17 00:00:00 2001 From: Robert Fairburn Date: Fri, 19 Sep 2014 11:26:10 -0500 Subject: [PATCH] make sure to match options as the options dict! --- 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 d289b92..34ca22f 100644 --- a/openssh/files/sshd_config +++ b/openssh/files/sshd_config @@ -150,7 +150,7 @@ {%- for match in sshd_config['matches'].values() %} Match {{ match['type'].keys()[0] }} {{ match['type'].values()[0] }} {%- for keyword in match['options'].keys() %} - {{ render_option(keyword, '', config_dict=match['type']) }} + {{ render_option(keyword, '', config_dict=match['options']) }} {%- endfor %} {%- endfor %} {%- endif %}