mirror of https://github.com/ansible/ansible.git
Attempt to enable docker tests for rhel/centos6 as well
parent
f8ec1451ea
commit
85e137bbad
@ -1,4 +1,18 @@
|
||||
- name: Install docker packages (yum)
|
||||
yum:
|
||||
state: present
|
||||
name: docker,docker-registry,python-docker-py,nmap-ncat
|
||||
name: docker-io,docker-registry,python-docker-py
|
||||
|
||||
- name: Install netcat
|
||||
yum:
|
||||
state: present
|
||||
name: nmap-ncat
|
||||
# RHEL7 as well...
|
||||
when: ansible_distribution == 'Fedora'
|
||||
|
||||
- name: Install netcat
|
||||
yum:
|
||||
state: present
|
||||
name: nc
|
||||
when: ansible_distribution != 'Fedora'
|
||||
|
||||
|
||||
Loading…
Reference in New Issue