6a7e637c5f
Change: - pip packages should get removed after, not try to add them again - Try removing containerd.io package too Test Plan: - CI Signed-off-by: Rick Elrod <rick@elrod.me>
14 lines
432 B
YAML
14 lines
432 B
YAML
- name: remove pip packages
|
|
pip:
|
|
state: absent
|
|
name: "{{ docker_pip_packages | union(docker_pip_extra_packages) | difference(docker_pip_never_remove) }}"
|
|
listen: cleanup docker
|
|
when: not docker_skip_cleanup | bool
|
|
|
|
- name: remove docker packages
|
|
action: "{{ ansible_facts.pkg_mgr }}"
|
|
args:
|
|
name: "{{ docker_cleanup_packages }}"
|
|
state: absent
|
|
listen: cleanup docker
|
|
when: not docker_skip_cleanup | bool
|