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

- name: restart openvswitch
  service: name=openvswitch state=restarted
  when: not (ovs_service_status_changed | default(false) | bool)