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.
8 lines
256 B
Bash
Executable File
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
|