summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node/handlers/main.yml
blob: 3fec4b1dd3d3474beee984c14c5cc9544b22416f (plain)
1
2
3
4
5
6
7
8
9
10
---
- name: restart node
  service: name={{ openshift.common.service_type }}-node state=restarted
  when: not (node_service_status_changed | default(false) | bool)

- name: restart docker
  service: name=docker state=restarted

- name: restart openvswitch
  service: name=openvswitch state=restarted