1
0
mirror of synced 2026-01-19 17:18:39 +00:00
xen-tools.xen-tools/examples/release-testing
Axel Beckert 862ce3b17c release-testing: Untangle deletion and creation of Domus
This hopefully further mitigates LVM race conditions during heavy
testing.
2017-01-17 21:06:39 +01:00

19 lines
419 B
Bash
Executable File

#!/bin/sh
set -e
exec 2>&1 | tee xen-tools-release-testing.log
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"
done
sync
sleep 5
for dist in $DISTRIBUTIONS; do
xen-create-image --verbose --hostname "xen-tools-release-testing-$dist" --dist $dist --force "$@"
done