main.yml 492 B

1234567891011121314
  1. ---
  2. - name: restart openvswitch
  3. systemd: name=openvswitch state=restarted
  4. when: not (ovs_service_status_changed | default(false) | bool) and openshift.common.use_openshift_sdn | bool
  5. notify:
  6. - restart openvswitch pause
  7. - name: restart openvswitch pause
  8. pause: seconds=15
  9. when: openshift.common.is_containerized | bool
  10. - name: restart node
  11. systemd: name={{ openshift.common.service_type }}-node state=restarted
  12. when: not (node_service_status_changed | default(false) | bool)