purge: rm service-cid files

This commit makes sure purge playbooks remove those file if for any reason they
have been left.

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1920900

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit b9dd253a4f)
pull/6288/head
Guillaume Abrioux 2021-02-02 21:22:50 +01:00
parent 5803619a5d
commit 3326b6d54f
1 changed files with 21 additions and 0 deletions

View File

@ -645,6 +645,27 @@
ansible_os_family == 'RedHat' and
not is_atomic
- name: find any service-cid file left
find:
paths: /run
patterns:
- "ceph-*.service-cid"
- "rbd-target-api.service-cid"
- "rbd-target-gw.service-cid"
- "tcmu-runner.service-cid"
- "node_exporter.service-cid"
- "prometheus.service-cid"
- "grafana-server.service-cid"
- "alertmanager.service-cid"
register: service_cid_files
- name: rm any service-cid file
file:
path: "{{ item.path }}"
state: absent
with_items: "{{ service_cid_files.files }}"
- name: purge ceph directories
hosts: