aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.ansible/roles/cleanup/tasks/remove_package.yaml
blob: 484868e595ac54ef9009be8756723574e4bdb554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
# file: roles/cleanup/tasks/remove_package.yaml

- name: Remove Package - Fix Corrupted APT
  shell: "dpkg --configure -a"
  when:
    - ansible_distribution == 'Ubuntu'
  tags:
    - remove-package

- name: Remove Package - {{ package }}
  apt:
    name: "{{ package }}"
    force: true
    purge: true
    state: "absent"
  failed_when: false
  when:
    - ansible_distribution == 'Ubuntu'
  tags:
    - remove-package