Changed sssd.conf file format

This commit is contained in:
Gregory Ballantine 2017-05-21 17:10:25 -04:00
parent ee49d4a8fe
commit 428b52f831

View File

@ -2,15 +2,15 @@
# Managed by Salt # Managed by Salt
{%- for key, value in sssd.config.iteritems() -%} {%- for key, value in sssd.config.iteritems() %}
{%- if value is mapping -%} {%- if value is mapping %}
[{{ key }}] [{{ key }}]
{%- for key2, value2 in value.iteritems() -%} {%- for key2, value2 in value.iteritems() %}
{{ key2 }} = {{ value2 }} {{ key2 }} = {{ value2 }}
{%- endfor -%} {%- endfor %}
{%- else -%} {%- else %}
[{{ key }}] [{{ key }}]
{%- endif -%} {% endif -%}
{%- endfor -%} {%- endfor -%}