1
0
Fork 0

oops. put that % back in for groups additions!

This commit is contained in:
bellaweo 2017-02-15 09:19:09 -08:00
parent 966b189127
commit c0740ccbff
1 changed files with 3 additions and 3 deletions

View File

@ -92,14 +92,14 @@ Runas_Alias {{ name }} = {{ ",".join(runas) }}
# Group privilege specification # Group privilege specification
{%- for group,specs in groups.items() %} {%- for group,specs in groups.items() %}
{%- for spec in specs %} {%- for spec in specs %}
{{ group }} {{ spec }} %{{ group }} {{ spec }}
{%- endfor %} {%- endfor %}
{%- endfor %} {%- endfor %}
{%- for unix_group in ad_groups.keys() %} {%- for unix_group in ad_groups.keys() %}
{%- if unix_group in ad_group_maps.keys() %} {%- if unix_group in ad_group_maps.keys() %}
{{ unix_group }} {{ ad_group_maps.unix_group }} %{{ unix_group }} {{ ad_group_maps.unix_group }}
{%- else %} {%- else %}
{{ unix_group }} {{ ad_group_maps.default }} %{{ unix_group }} {{ ad_group_maps.default }}
{%- endif %} {%- endif %}
{%- endfor %} {%- endfor %}