ansible/test/integration/roles/test_docker/tasks/main.yml
Toshio Kuratomi 23291e8d8c Ugh, looks like very few distros have the proper packages to run the docker module.
break up the tests so that we can maybe  run this on at least one
platform
2015-03-17 13:18:42 -07:00

14 lines
543 B
YAML

- include: docker-setup-rht.yml
when: ansible_distribution in ['Fedora']
# Packages on RHEL and CentOS are broken, broken, broken. Revisit when
# they've got that sorted out
#when: ansible_distribution in ['Fedora', 'RedHat', 'CentOS']
# 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']