old_version_cleanup.yml 1.2 KB

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