1
0
mirror of synced 2026-01-19 17:18:39 +00:00
xen-tools.xen-tools/examples/release-testing
Axel Beckert 76aabb0eb5 Declare testability in distributions.conf instead of hardcoding it
Mark buster and bullseye as not testable, too, for now.

Move comment about #659360 (debootstrap cannot build Ubuntu Edgy or
earlier) from release-testing to distributions.conf, too.
2017-01-17 20:44:19 +01:00

8 lines
256 B
Bash
Executable File

#!/bin/sh
set -e
for dist in $(awk '!/^#|^$|dont-test/ {print $1}' /etc/xen-tools/distributions.conf); do
xen-create-image --dist $dist --hostname "xen-tools-release-testing-$dist" --force --verbose "$@"
done 2>&1 | tee xen-tools-release-testing.log