mirror of
https://github.com/geerlingguy/ansible-role-ansible.git
synced 2024-11-12 10:03:56 +01:00
2828125e67
* Added specific role for Debian using backports repository * Moved ubuntu to specific file * Changed ansible_os_family to ansible_distribution for Debian/Ubuntu. Fixed my mistake where setup-Ubuntu.yml was a setup-RedHat copy
11 lines
233 B
YAML
11 lines
233 B
YAML
---
|
|
# Setup/install tasks.
|
|
- include: setup-RedHat.yml
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
- include: setup-Ubuntu.yml
|
|
when: ansible_distribution == 'Ubuntu'
|
|
|
|
- include: setup-Debian.yml
|
|
when: ansible_distribution == 'Debian'
|