1
0
Fork 0
mirror of synced 2024-06-01 14:51:08 -04:00

user/group fix

This commit is contained in:
Kenneth Wilke 2013-08-20 16:53:00 -05:00
parent 61a216de81
commit 7ae89c11ec

View file

@ -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 %}