mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
17 lines
725 B
YAML
17 lines
725 B
YAML
- include: docker-setup-rht.yml
|
|
when: ansible_distribution in ['Fedora']
|
|
- include: docker-setup-rht.yml
|
|
# Packages on RHEL and CentOS 7 are broken, broken, broken. Revisit when
|
|
# they've got that sorted out
|
|
when: ansible_distribution in ['RedHat', 'CentOS'] and ansible_lsb.major_release|int == 6
|
|
|
|
# python-docker isn't available until 14.10. Revist at the next Ubuntu LTS
|
|
#- include: docker-setup-debian.yml
|
|
# when: ansible_distribution in ['Ubuntu']
|
|
|
|
- include: docker-tests.yml
|
|
# Add other distributions as the proper packages become available
|
|
when: ansible_distribution in ['Fedora']
|
|
|
|
- include: docker-tests.yml
|
|
when: ansible_distribution in ['RedHat', 'CentOS'] and ansible_lsb.major_release|int == 6
|