mirror of
https://github.com/geerlingguy/ansible-role-ansible.git
synced 2025-01-08 18:47:45 +01:00
14 lines
340 B
YAML
14 lines
340 B
YAML
---
|
|
# Setup/install tasks.
|
|
- include: setup-RedHat.yml
|
|
when: ansible_os_family == 'RedHat' and ansible_distribution != 'Fedora'
|
|
|
|
- include: setup-Fedora.yml
|
|
when: ansible_distribution == 'Fedora'
|
|
|
|
- include: setup-Ubuntu.yml
|
|
when: ansible_distribution == 'Ubuntu'
|
|
|
|
- include: setup-Debian.yml
|
|
when: ansible_distribution == 'Debian'
|