diff options
author | Michael Chapman <woppin@gmail.com> | 2016-01-29 21:01:07 +1100 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2016-02-04 00:49:07 +0000 |
commit | 1a2a9580cbd5dccdc11399d2cae47d02217be860 (patch) | |
tree | 6a45e6d62ca6e46c3e87f2e76cf8fe6a3e6e522f | |
parent | 443aa69846a58012e783e3d29e643491eb139283 (diff) |
Touch baremetal images before vol-delete
Similar to the instack line above, the vol-delete will fail if the
baremetal image file is not present. This can happen if the disk
runs out of space during copy, for example.
Change-Id: Ib3a60dd03c3f7172cb59ade30e745397410e3ef2
(cherry picked from commit e8a74a21aa0e477bdb9293bf37d546412d8427d1)
-rwxr-xr-x | ci/clean.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ci/clean.sh b/ci/clean.sh index 8b0c9bbc..f05b9136 100755 --- a/ci/clean.sh +++ b/ci/clean.sh @@ -34,6 +34,7 @@ rm -f /var/lib/libvirt/images/instack.qcow2 2> /dev/null for i in $(seq 0 $vm_index); do virsh destroy baremetalbrbm_brbm1_brbm2_brbm3_$i 2> /dev/null || echo -n '' virsh undefine baremetalbrbm_brbm1_brbm2_brbm3_$i --remove-all-storage 2> /dev/null || echo -n '' + /usr/bin/touch /var/lib/libvirt/images/baremetalbrbm_brbm1_brbm2_brbm3_${i}.qcow2 virsh vol-delete baremetalbrbm_brbm1_brbm2_brbm3_${i}.qcow2 --pool default 2> /dev/null rm -f /var/lib/libvirt/images/baremetalbrbm_brbm1_brbm2_brbm3_${i}.qcow2 2> /dev/null done |