mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-16 20:08:41 +00:00
* Add basic docker_compose tests. * Add more constraints for Py 2. * Try to install docker-compose from system packages. * Another try. * Some more tries. * One more. * Move task into block. * Clean up constraints file. * More adjustments. * TEMP: add debug output
13 lines
469 B
YAML
13 lines
469 B
YAML
---
|
|
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
- set_fact:
|
|
has_docker_compose: false
|
|
|
|
- when: ansible_facts.distribution ~ ansible_facts.distribution_major_version not in ['CentOS6', 'RedHat6']
|
|
include_tasks:
|
|
file: setup.yml
|