1
0
mirror of synced 2026-03-05 10:24:04 +00:00

New example script helpful for release testing

This commit is contained in:
Axel Beckert
2015-07-17 22:27:51 +02:00
parent fb808b0198
commit 765901b8b2
2 changed files with 7 additions and 0 deletions

1
debian/changelog vendored
View File

@@ -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

6
examples/release-testing Executable file
View File

@@ -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