mirror of https://github.com/ceph/ceph-ansible.git
Merge pull request #1892 from ceph/purge-dmcrypt-col
purge: only purge specific directories for monpull/1893/head v3.0.0rc8
commit
fe1d84d395
|
@ -450,8 +450,17 @@
|
|||
|
||||
- name: remove monitor store and bootstrap keys
|
||||
file:
|
||||
path: /var/lib/ceph/
|
||||
path: "{{ item }}"
|
||||
state: absent
|
||||
with_items:
|
||||
- /var/lib/ceph/mon
|
||||
- /var/lib/ceph/bootstrap-mds
|
||||
- /var/lib/ceph/bootstrap-osd
|
||||
- /var/lib/ceph/bootstrap-rgw
|
||||
- /var/lib/ceph/bootstrap-rbd
|
||||
- /var/lib/ceph/bootstrap-mgr
|
||||
- /var/lib/ceph/tmp
|
||||
|
||||
|
||||
- name: purge iscsi gateway(s)
|
||||
|
||||
|
|
Loading…
Reference in New Issue