New example script helpful for release testing
This commit is contained in:
1
debian/changelog
vendored
1
debian/changelog
vendored
@@ -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
6
examples/release-testing
Executable 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
|
||||
Reference in New Issue
Block a user