summaryrefslogtreecommitdiff
path: root/test/integration/targets/setup_docker/handlers/main.yml
blob: 93d9657cbb7f7631aa89970e4ee25a9834bc9f65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- 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