7c8b046b5f
* Copy in incidental posix tests. * Update incidental test aliases. * Update target names. * Add support plugins. * Fix paths. * Update ignores. * Update integration-aliases sanity test. * Add incidental tests to CI.
14 lines
395 B
YAML
14 lines
395 B
YAML
- name: remove pip packages
|
|
pip:
|
|
state: present
|
|
name: "{{ docker_pip_packages | union(docker_pip_extra_packages) }}"
|
|
listen: cleanup docker
|
|
when: not docker_skip_cleanup | bool
|
|
|
|
- name: remove docker pagkages
|
|
action: "{{ ansible_facts.pkg_mgr }}"
|
|
args:
|
|
name: "{{ docker_cleanup_packages }}"
|
|
state: absent
|
|
listen: cleanup docker
|
|
when: not docker_skip_cleanup | bool
|