Create a system usergroup if user is a system user
If the user to be created is a system user, it makes no sense to create him a primary group which is not a system group too.
This commit is contained in:
parent
ee75a7ecd1
commit
cf122d1bd6
|
@ -73,6 +73,9 @@ users_{{ name }}_user:
|
||||||
{%- elif 'uid' in user %}
|
{%- elif 'uid' in user %}
|
||||||
- gid: {{ user['uid'] }}
|
- gid: {{ user['uid'] }}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
{% if 'system' in user and user['system'] %}
|
||||||
|
- system: True
|
||||||
|
{% endif %}
|
||||||
user.present:
|
user.present:
|
||||||
- name: {{ name }}
|
- name: {{ name }}
|
||||||
- home: {{ home }}
|
- home: {{ home }}
|
||||||
|
|
Loading…
Reference in New Issue