6b2b876d43
podman 1.4 now installs docker man pages. Add handler to remove docker packages to avoid test failure due to this conflict. Adjust inventory_docker_swarm integration test Add conditional to cleanup handlers to allow use of the setup_docker role without removing packages at the end of the play. The inventory_docker_swarm integration tests does its own cleanup.
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
|