10 lines
430 B
YAML
10 lines
430 B
YAML
---
|
|
# Common/Tools: Additional Tools (depending on OS) (rsync; dnsutils, htop, unzip)
|
|
|
|
- name: Tools - Install basic utilities
|
|
ansible.builtin.include_tasks: "{{ with_first_found_item }}"
|
|
with_first_found:
|
|
- "tools-{{ ansible_facts['distribution'] }}.yml"
|
|
- "tools-{{ (override_os_family is defined) | ternary(override_os_family, ansible_facts['os_family']) }}.yml"
|
|
loop_control:
|
|
loop_var: with_first_found_item
|