main.yml 303 B

123456789
  1. ---
  2. - name: restart openvswitch
  3. service: name=openvswitch state=restarted
  4. when: not (ovs_service_status_changed | default(false) | bool)
  5. - name: restart node
  6. service: name={{ openshift.common.service_type }}-node state=restarted
  7. when: not (node_service_status_changed | default(false) | bool)