diff options
| author | Ahmed AbdelHalim <[email protected]> | 2025-09-03 00:57:59 +0200 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2025-09-03 00:57:59 +0200 |
| commit | 391c58bdb9edbadc468b8f641772a152a9886d1d (patch) | |
| tree | 98bfe60482d4cdcdb875dd940a8014abba61f612 | |
| parent | 4dd46ccc5533f2570c0977a5f3866a12974f2b25 (diff) | |
Fix the user groups to be appended
It's more modular and each role can manage its own group memberships
| -rw-r--r-- | roles/user/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/user/tasks/main.yml b/roles/user/tasks/main.yml index 72318325..e6e2a306 100644 --- a/roles/user/tasks/main.yml +++ b/roles/user/tasks/main.yml @@ -37,7 +37,7 @@ become: true ansible.builtin.user: name: "{{ username }}" - append: false + append: true create_home: true generate_ssh_key: false groups: "{{ user_groups }}" |
