mirror of https://github.com/ceph/ceph-ansible.git
Move parted to the end of the playbook
If we call partprobe directly after the partition deletion the task will get stucked. Signed-off-by: Sébastien Han <seb@redhat.com>pull/363/head
parent
584ea8ba61
commit
3b49c57834
|
@ -22,9 +22,6 @@
|
||||||
with_items: devices
|
with_items: devices
|
||||||
failed_when: false
|
failed_when: false
|
||||||
|
|
||||||
- name: call partprobe
|
|
||||||
command: partprobe
|
|
||||||
|
|
||||||
- name: purge ceph
|
- name: purge ceph
|
||||||
command: ceph-deploy purge {{ ansible_fqdn }}
|
command: ceph-deploy purge {{ ansible_fqdn }}
|
||||||
delegate_to: 127.0.0.1
|
delegate_to: 127.0.0.1
|
||||||
|
@ -36,3 +33,6 @@
|
||||||
- name: purge remaining data
|
- name: purge remaining data
|
||||||
command: ceph-deploy purgedata {{ ansible_fqdn }}
|
command: ceph-deploy purgedata {{ ansible_fqdn }}
|
||||||
delegate_to: 127.0.0.1
|
delegate_to: 127.0.0.1
|
||||||
|
|
||||||
|
- name: call partprobe
|
||||||
|
command: partprobe
|
||||||
|
|
Loading…
Reference in New Issue