From: Sébastien Han Date: Mon, 3 Aug 2015 14:20:03 +0000 (+0200) Subject: Move parted to the end of the playbook X-Git-Tag: v1.0.0~139^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3b49c578345b1c32d3fdbc25533c718a5bb808b8;p=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 --- diff --git a/purge-cluster.yml b/purge-cluster.yml index 9b84459f7..62726e104 100644 --- a/purge-cluster.yml +++ b/purge-cluster.yml @@ -22,9 +22,6 @@ with_items: devices failed_when: false - - name: call partprobe - command: partprobe - - name: purge ceph command: ceph-deploy purge {{ ansible_fqdn }} delegate_to: 127.0.0.1 @@ -36,3 +33,6 @@ - name: purge remaining data command: ceph-deploy purgedata {{ ansible_fqdn }} delegate_to: 127.0.0.1 + + - name: call partprobe + command: partprobe