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 | c3b114acf755cb0665c9e0bfe4316eb38409b98c (patch) | |
| tree | e5f394ec8e01d66f3aa7e944d356a4bbb1509711 /roles/user | |
| parent | e86a8771b85cf9a59c813aa377afc3a80515c734 (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 |
