mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
15 lines
395 B
YAML
15 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
|