mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
442 B
YAML
15 lines
442 B
YAML
7 years ago
|
- include: RedHat.yml
|
||
|
when: ansible_os_family == 'RedHat' and ansible_distribution != 'Fedora' and ansible_distribution_major_version != '6'
|
||
|
|
||
|
- include: Fedora.yml
|
||
|
when: ansible_distribution == 'Fedora'
|
||
|
|
||
|
- include: OpenSuse.yml
|
||
|
when: ansible_os_family == 'Suse'
|
||
|
|
||
|
- include: Ubuntu.yml
|
||
|
when: ansible_os_family == 'Debian'
|
||
|
|
||
|
- include: test_secrets.yml
|
||
|
when: ansible_os_family != 'RedHat' or ansible_distribution_major_version != '6'
|