2019-10-06 22:41:31 +02:00
|
|
|
---
|
2019-10-14 08:47:22 +02:00
|
|
|
# Common/Tools: Additional Tools (depending on OS) (rsync; dnsutils, htop, unzip)
|
2019-10-06 22:41:31 +02:00
|
|
|
|
2023-04-28 23:25:25 +02:00
|
|
|
- name: Tools - Install basic utilities
|
2026-03-20 12:12:13 +01:00
|
|
|
ansible.builtin.include_tasks: "{{ with_first_found_item }}"
|
2019-10-06 22:41:31 +02:00
|
|
|
with_first_found:
|
2025-11-28 11:10:58 +01:00
|
|
|
- "tools-{{ ansible_facts['distribution'] }}.yml"
|
|
|
|
|
- "tools-{{ (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
|