mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
a00d615d68
* Try to limit docker package version if API version is < 1.39. * Fix error. * Re-combine to one command.
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
|