mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
167153bff5
* Improve readability. * Move common code to new file.
14 lines
396 B
YAML
14 lines
396 B
YAML
- name: Remove pip packages
|
|
pip:
|
|
state: present
|
|
name: "{{ [docker_pip_package] | 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
|