diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-09-20 20:55:03 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-09-20 20:55:03 +0200 |
| commit | 19a7d7053b721a22b805ba7a9daff1cb7a70a630 (patch) | |
| tree | e5f394ec8e01d66f3aa7e944d356a4bbb1509711 /roles/user | |
| parent | 534e7486f3db1f56e9a4f54572c8724c2aca88f4 (diff) | |
Migrate to the new loop syntax
Diffstat (limited to 'roles/user')
| -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 8fcb101b..a31520df 100644 --- a/roles/user/tasks/main.yml +++ b/roles/user/tasks/main.yml @@ -8,7 +8,7 @@ ansible.builtin.group: name: "{{ item }}" state: "present" - with_items: "{{ user_groups }}" + loop: "{{ user_groups }}" - name: "Create user: {{ username }}" # noqa var-naming[no-role-prefix] username is more understandable than user_name |
