refactor: Use custom loop_var in with_first_found invocations

Otherwise "item" will already be bound when it's used somewhere in the included tasks
This commit is contained in:
Jannik Beyerstedt 2026-03-20 12:12:13 +01:00
parent 758bbf33f9
commit 085a446b05
6 changed files with 18 additions and 6 deletions

View file

@ -2,7 +2,9 @@
# Common/Usertools: User's Main Machine/ Developer Tools (nmap, rsync, icdiff, iftop, ansible)
- name: Usertools - Install user's working utilities
ansible.builtin.include_tasks: "{{ item }}"
ansible.builtin.include_tasks: "{{ with_first_found_item }}"
with_first_found:
- "usertools-{{ ansible_facts['distribution'] }}.yml"
- "usertools-{{ (override_os_family is defined) | ternary(override_os_family, ansible_facts['os_family']) }}.yml"
loop_control:
loop_var: with_first_found_item