Skip to content

Commit

Permalink
Use group instead of groups for system user group
Browse files Browse the repository at this point in the history
If the user happens to be in other groups than the one configured by
this role, `groups` would overwrite this. `group` on the other hand only
configures the main group the user belongs to.
  • Loading branch information
doobry-systemli committed May 5, 2023
1 parent 642918a commit f594ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
name: "{{ roundcube_user }}"
home: "{{ roundcube_user_home }}"
shell: "{{ roundcube_user_shell }}"
groups: "{{ roundcube_group }}"
group: "{{ roundcube_group }}"

- name: Install Roundcube dependencies
ansible.builtin.apt:
Expand Down

0 comments on commit f594ef2

Please sign in to comment.