2019-10-14 08:47:22 +02:00
|
|
|
---
|
|
|
|
|
# Common/Usertools: User's Main Machine/ Developer Tools (nmap, rsync, icdiff, iftop, ansible)
|
|
|
|
|
|
2023-04-28 23:25:25 +02:00
|
|
|
- name: Usertools - Install user's working utilities
|
2026-03-20 12:12:13 +01:00
|
|
|
ansible.builtin.include_tasks: "{{ with_first_found_item }}"
|
2019-10-14 08:47:22 +02:00
|
|
|
with_first_found:
|
2025-11-28 11:10:58 +01:00
|
|
|
- "usertools-{{ ansible_facts['distribution'] }}.yml"
|
|
|
|
|
- "usertools-{{ (override_os_family is defined) | ternary(override_os_family, ansible_facts['os_family']) }}.yml"
|
2026-03-20 12:12:13 +01:00
|
|
|
loop_control:
|
|
|
|
|
loop_var: with_first_found_item
|