main.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ---
  2. - name: restart NetworkManager
  3. systemd:
  4. name: NetworkManager
  5. state: restarted
  6. enabled: True
  7. - name: restart dnsmasq
  8. systemd:
  9. name: dnsmasq
  10. state: restarted
  11. - name: restart openvswitch
  12. systemd:
  13. name: openvswitch
  14. state: restarted
  15. when:
  16. - (not skip_node_svc_handlers | default(False) | bool)
  17. - not (ovs_service_status_changed | default(false) | bool)
  18. - openshift_node_use_openshift_sdn | bool
  19. - not openshift_node_bootstrap
  20. register: l_openshift_node_stop_openvswitch_result
  21. until: not l_openshift_node_stop_openvswitch_result | failed
  22. retries: 3
  23. delay: 30
  24. notify:
  25. - restart openvswitch pause
  26. - name: restart openvswitch pause
  27. pause: seconds=15
  28. when:
  29. - (not skip_node_svc_handlers | default(False) | bool)
  30. - openshift.common.is_containerized | bool
  31. - name: restart node
  32. systemd:
  33. name: "{{ openshift_service_type }}-node"
  34. state: restarted
  35. register: l_openshift_node_restart_node_result
  36. until: not l_openshift_node_restart_node_result | failed
  37. retries: 3
  38. delay: 30
  39. when:
  40. - (not skip_node_svc_handlers | default(False) | bool)
  41. - not (node_service_status_changed | default(false) | bool)
  42. - not openshift_node_bootstrap
  43. - name: reload systemd units
  44. command: systemctl daemon-reload