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
|
||||
{%- for group,specs in groups.items() %}
|
||||
{%- for spec in specs %}
|
||||
{{ group }} {{ spec }}
|
||||
%{{ group }} {{ spec }}
|
||||
{%- endfor %}
|
||||
{%- endfor %}
|
||||
{%- for unix_group in ad_groups.keys() %}
|
||||
{%- if unix_group in ad_group_maps.keys() %}
|
||||
{{ unix_group }} {{ ad_group_maps.unix_group }}
|
||||
%{{ unix_group }} {{ ad_group_maps.unix_group }}
|
||||
{%- else %}
|
||||
{{ unix_group }} {{ ad_group_maps.default }}
|
||||
%{{ unix_group }} {{ ad_group_maps.default }}
|
||||
{%- endif %}
|
||||
{%- endfor %}
|
||||
|
||||
|
|
Loading…
Reference in a new issue