zuul-jobs/roles/install-docker/handlers/main.yml
Kevin Carter fb41492e4a
Isolate installation mode
The role variables were making generalizations on distro package
and installation methods. This change further breaks things out,
now explicitly supporting ubuntu, debian, fedora, and
redhat(centos).

Change-Id: Ib1749721b32b21ba1ab661a64097d79037e416f3
Signed-off-by: Kevin Carter <kecarter@redhat.com>
2019-06-11 19:10:53 -05:00

17 lines
309 B
YAML

---
- name: Assure docker service is running
become: true
service:
name: docker
enabled: yes
state: started
listen: Restart docker
- name: Correct group ownership on docker sock
become: true
file:
path: /var/run/docker.sock
group: "{{ docker_group }}"
listen: Restart docker