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