summaryrefslogtreecommitdiffstats
path: root/roles/docker/handlers/main.yml
blob: aff905bc8113eed9057dbfbf4ce4ad351b6156d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---

- name: restart docker
  service:
    name: docker
    state: restarted
  when: not docker_service_status_changed | default(false) | bool

- name: restart udev
  service:
    name: systemd-udevd
    state: restarted