main.yml 841 B

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. - name: restart NetworkManager
  3. systemd:
  4. name: NetworkManager
  5. state: restarted
  6. enabled: True
  7. when:
  8. - (not skip_node_svc_handlers | default(False) | bool)
  9. - name: restart dnsmasq
  10. systemd:
  11. name: dnsmasq
  12. state: restarted
  13. when:
  14. - (not skip_node_svc_handlers | default(False) | bool)
  15. - name: restart node
  16. systemd:
  17. name: "{{ openshift_service_type }}-node"
  18. state: restarted
  19. register: l_openshift_node_restart_node_result
  20. until: not (l_openshift_node_restart_node_result is failed)
  21. retries: 3
  22. delay: 30
  23. when:
  24. - (not skip_node_svc_handlers | default(False) | bool)
  25. - not (node_service_status_changed | default(false) | bool)
  26. - not openshift_node_bootstrap
  27. - name: reload systemd units
  28. command: systemctl daemon-reload
  29. when:
  30. - (not skip_node_svc_handlers | default(False) | bool)