1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
#!/bin/sh
set -eu
arch=$(dpkg --print-architecture)
if [ -z "${AUTOPKGTEST_NORMAL_USER-}" ]; then
echo "Skipping test because it requires an AUTOPKGTEST_NORMAL_USER"
exit 77
fi
# On Ubuntu LXD is provided as a snap. Install snapd if not present.
if dpkg-vendor --is ubuntu && ! command -v snap >/dev/null; then
DEBIAN_FRONTEND=noninteractive apt-get -q --yes install snapd
fi
if [ -z "${AUTOPKGTEST_TEST_UNINSTALLED-}" ]; then
export AUTOPKGTEST_TEST_INSTALLED=yes
build_lxd=autopkgtest-build-lxd
else
build_lxd=tools/autopkgtest-build-lxd
fi
# Detect LXD API extensions
lxd_extension() {
lxc info | grep -q "^\- ${1}$"
}
lxd waitready
lxd init --minimal
lxd init --dump
adduser "$AUTOPKGTEST_NORMAL_USER" lxd
[ -n "${http_proxy:-}" ] && lxc config set core.proxy_http "${http_proxy}"
[ -n "${https_proxy:-}" ] && lxc config set core.proxy_https "${https_proxy}"
# work around broken PTMU in Canonical Scalingstack
iptables -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu
if dpkg-vendor --is ubuntu; then
remote=ubuntu
vendor=ubuntu
suite=$(ubuntu-distro-info --lts)
image="$remote:$suite/$arch"
else
remote=images
vendor=debian
suite="$(debian-distro-info --testing)"
image="$remote:$vendor/$suite/$arch"
if [ "$arch" != "amd64" ] && [ "$arch" != "arm64" ]; then
echo "SKIP: Debian LXD images are only available for amd64 and arm64"
exit 77
fi
fi
runuser -u "$AUTOPKGTEST_NORMAL_USER" -- \
"$build_lxd" "$image"
exec annotate-output \
runuser -u "$AUTOPKGTEST_NORMAL_USER" -- \
env \
AUTOPKGTEST_TEST_INSTALLED="${AUTOPKGTEST_TEST_INSTALLED-}" \
AUTOPKGTEST_TEST_UNINSTALLED="${AUTOPKGTEST_TEST_UNINSTALLED-}" \
AUTOPKGTEST_TEST_LXD="autopkgtest/$vendor/$suite/$arch" \
./tests/autopkgtest LxdRunner
|