user/group fix
This commit is contained in:
parent
61a216de81
commit
7ae89c11ec
1 changed files with 2 additions and 2 deletions
|
@ -37,12 +37,12 @@ Runas_Alias {{ name }} = {{ ",".join(runas) }}
|
|||
{% endfor %}
|
||||
|
||||
# User privilege specification
|
||||
{% for user,spec in users %}
|
||||
{% for user,spec in users.items() %}
|
||||
{{ user }} {{ spec }}
|
||||
{% endfor %}
|
||||
|
||||
# Group privilege specification
|
||||
{% for group,spec in groups %}
|
||||
{% for group,spec in groups.items() %}
|
||||
%{{ group }} {{ spec }}
|
||||
{% endfor %}
|
||||
|
||||
|
|
Loading…
Reference in a new issue