2015-03-17 21:18:42 +01:00
|
|
|
- name: Install docker packages (yum)
|
|
|
|
yum:
|
|
|
|
state: present
|
2015-03-17 21:52:44 +01:00
|
|
|
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'
|
|
|
|
|