diff --git a/debian/changelog b/debian/changelog index f34db45..c3495ce 100644 --- a/debian/changelog +++ b/debian/changelog @@ -47,6 +47,7 @@ xen-tools (4.5+dev-1) UNRELEASED; urgency=medium + Supports "unstable", "oldstable" and "oldoldstable" as distribution names, too. ("oldoldstable" is not yet supported by debootstrap, see feature request #792734 in debootstrap.) + + New example script helpful for release testing. * Update Vcs-* headers and documentation as Gitorious closed its doors in June 2015 and is now only available with static contents. * Recommend debian-archive-keyring (for installing Debian DomUs on diff --git a/examples/release-testing b/examples/release-testing new file mode 100755 index 0000000..b708ab5 --- /dev/null +++ b/examples/release-testing @@ -0,0 +1,6 @@ +#!/bin/sh + +# Skip dapper and edgy due to bug #659360 in debootstrap +for dist in $(awk '!/^#|^$/ {print $1}' /etc/xen-tools/distributions.conf | egrep -v '^(dapper|edgy)$'); do + xen-create-image --dist $dist --force --verbose "$@" || break +done 2>&1 | tee xen-tools-release-testing.log