users: Do not clear supplemental groups
To ensure the `users.yml` playbook is idempotent in cases where the users it manages are also managed by other playbooks, we have to set `append: true`. This prevents the managed user(s) from being removed from additional groups other playbooks may have added them to.unifi-restore
parent
a5e2920223
commit
2d4eb76f24
|
@ -16,6 +16,7 @@
|
||||||
comment: '{{ item.comment | d(omit) }}'
|
comment: '{{ item.comment | d(omit) }}'
|
||||||
uid: '{{ item.uid | d(omit) }}'
|
uid: '{{ item.uid | d(omit) }}'
|
||||||
groups: '{{ item.groups | d(omit) }}'
|
groups: '{{ item.groups | d(omit) }}'
|
||||||
|
append: true
|
||||||
create_home: true
|
create_home: true
|
||||||
local: true
|
local: true
|
||||||
password: '*'
|
password: '*'
|
||||||
|
|
Loading…
Reference in New Issue