Added some SSSD configuration stuff

This commit is contained in:
Gregory Ballantine
2017-05-21 13:38:38 -04:00
parent 675cff69fe
commit 8d2224141f
2 changed files with 28 additions and 0 deletions

16
sssd/files/sssd.conf Normal file
View File

@ -0,0 +1,16 @@
{% from "sssd/map.jinja" import sssd with context %}
# Managed by Salt
{%- for key, value in sssd.items() -%}
{%- if value is mapping -%}
[{{ key }}]
{%- for key2, value2 -%}
{{ key2 }} = {{ value2 }}
{%- endfor -%}
{%- else -%}
[{{ key }}]
{%- endif -%}
{%- endfor -%}