Skip to content

Commit

Permalink
purge: add remove_docker tag
Browse files Browse the repository at this point in the history
This can help to skip docker removal tasks

Signed-off-by: Seena Fallah <seenafallah@gmail.com>
(cherry picked from commit ff39c8d)
  • Loading branch information
clwluvw authored and guits committed Sep 14, 2021
1 parent eef429a commit 25e078f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions infrastructure-playbooks/purge-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -969,6 +969,8 @@
- not is_atomic
- container_binary == 'docker'
ignore_errors: true
tags:
- remove_docker

- name: remove docker on debian/ubuntu
apt:
Expand All @@ -977,6 +979,8 @@
update_cache: yes
autoremove: yes
when: ansible_facts['os_family'] == 'Debian'
tags:
- remove_docker

- name: red hat based systems tasks
block:
Expand Down Expand Up @@ -1020,6 +1024,8 @@
when:
ansible_facts['os_family'] == 'RedHat' and
not is_atomic
tags:
- remove_docker

- name: find any service-cid file left
find:
Expand Down Expand Up @@ -1079,6 +1085,8 @@
- name: remove docker data
shell: rm -rf /var/lib/docker/* # noqa 302
when: not is_atomic | bool
tags:
- remove_docker


- name: purge fetch directory
Expand Down

0 comments on commit 25e078f

Please sign in to comment.