Support for optional_groups
This commit is contained in:
parent
6bc25c9099
commit
5538eb18ab
|
@ -135,6 +135,12 @@ users_{{ name }}_user:
|
||||||
{% for group in user.get('groups', []) -%}
|
{% for group in user.get('groups', []) -%}
|
||||||
- {{ group }}
|
- {{ group }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% if 'optional_groups' in user %}
|
||||||
|
- optional_groups:
|
||||||
|
{% for optional_group in user['optional_groups'] -%}
|
||||||
|
- {{optional_group}}
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
- require:
|
- require:
|
||||||
- group: {{ user_group }}
|
- group: {{ user_group }}
|
||||||
{% for group in user.get('groups', []) -%}
|
{% for group in user.get('groups', []) -%}
|
||||||
|
|
Loading…
Reference in New Issue