Fix requisites for user state

group requisites were wrong. They required {{ group }}_group, while {{ group }} was the actually added group.
This commit is contained in:
J. Random Hacker 2013-08-08 13:42:55 +02:00
parent 28a5bde105
commit 7b7ee3f2f8

View File

@ -39,12 +39,12 @@ include:
- groups:
- {{ name }}
{% for group in user.get('groups', []) %}
- {{ group }}_group
- {{ group }}
{% endfor %}
- require:
- group: {{ name }}_user
- group: {{ name }}
{% for group in user.get('groups', []) %}
- group: {{ group }}_group
- group: {{ group }}
{% endfor %}
user_keydir_{{ name }}: