mirror of
https://github.com/saltstack-formulas/sudoers-formula.git
synced 2025-02-17 15:44:26 +01:00
user/group fix
This commit is contained in:
parent
61a216de81
commit
7ae89c11ec
@ -37,12 +37,12 @@ Runas_Alias {{ name }} = {{ ",".join(runas) }}
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
# User privilege specification
|
# User privilege specification
|
||||||
{% for user,spec in users %}
|
{% for user,spec in users.items() %}
|
||||||
{{ user }} {{ spec }}
|
{{ user }} {{ spec }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
# Group privilege specification
|
# Group privilege specification
|
||||||
{% for group,spec in groups %}
|
{% for group,spec in groups.items() %}
|
||||||
%{{ group }} {{ spec }}
|
%{{ group }} {{ spec }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user