1
0
mirror of synced 2026-03-10 12:18:17 +00:00

release-testing: Untangle deletion and creation of Domus

This hopefully further mitigates LVM race conditions during heavy
testing.
This commit is contained in:
Axel Beckert
2017-01-17 21:06:39 +01:00
parent 0317940815
commit 862ce3b17c

View File

@@ -4,9 +4,15 @@ set -e
exec 2>&1 | tee xen-tools-release-testing.log
for dist in $(awk '!/^#|^$|dont-test/ {print $1}' /etc/xen-tools/distributions.conf); do
DISTRIBUTIONS=$(awk '!/^#|^$|dont-test/ {print $1}' /etc/xen-tools/distributions.conf)
for dist in $DISTRIBUTIONS; do
xen-delete-image --verbose --hostname "xen-tools-release-testing-$dist"
sync
sleep 5
done
sync
sleep 5
for dist in $DISTRIBUTIONS; do
xen-create-image --verbose --hostname "xen-tools-release-testing-$dist" --dist $dist --force "$@"
done