mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-08 21:03:29 +01:00
12 lines
295 B
Django/Jinja
12 lines
295 B
Django/Jinja
{% endfor %}
|
|
{% endif %}
|
|
{% endmacro %}
|
|
{% macro match_iterate_block(match_list) %}
|
|
{% if match_list | type_debug == "list" %}
|
|
{% for match in match_list %}
|
|
{{ match_block(match) -}}
|
|
{% endfor %}
|
|
{% else %}
|
|
{{ match_block(match_list) -}}
|
|
{% endif %}
|
|
{% endmacro %}
|