old_version_cleanup.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ---
  2. - name: Old version cleanup | Check if old auth proxy service exists
  3. stat:
  4. path: /etc/systemd/system/auth-proxy.service
  5. get_checksum: false
  6. get_attributes: false
  7. get_mime: false
  8. register: auth_proxy_stat
  9. - name: Old version cleanup | Stop old auth proxy
  10. service:
  11. name: auth-proxy
  12. enabled: no
  13. state: stopped
  14. when: auth_proxy_stat.stat.exists
  15. # Note(NB): The new containerized contiv-etcd service uses the same data
  16. # directory on the host, so etcd data is not lost.
  17. - name: Old version cleanup | Check if old contiv-etcd service exists
  18. stat:
  19. path: /etc/systemd/system/contiv-etcd.service
  20. get_checksum: false
  21. get_attributes: false
  22. get_mime: false
  23. register: contiv_etcd_stat
  24. - name: Old version cleanup | Stop old contiv-etcd
  25. service:
  26. name: contiv-etcd
  27. enabled: no
  28. state: stopped
  29. when: contiv_etcd_stat.stat.exists
  30. - name: Old version cleanup | Delete old files
  31. file:
  32. state: absent
  33. path: "{{ item }}"
  34. with_items:
  35. - /etc/systemd/system/auth-proxy.service
  36. - /var/contiv/certs
  37. - /usr/bin/auth_proxy.sh
  38. - /etc/systemd/system/contiv-etcd.service
  39. - /etc/systemd/system/contiv-etcd.service.d
  40. - include_tasks: old_version_cleanup_iptables.yml
  41. when: not contiv_has_firewalld and contiv_has_iptables
  42. - include_tasks: old_version_cleanup_firewalld.yml
  43. when: contiv_has_firewalld