oops. put that % back in for groups additions!
This commit is contained in:
parent
966b189127
commit
c0740ccbff
1 changed files with 3 additions and 3 deletions
|
@ -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 %}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue