From: Po-Hsu Lin Date: Wed, 4 Jan 2017 11:23:04 +0000 (+0800) Subject: python3-lxc: fix api_test.py on s390x X-Git-Tag: lxc-2.1.0~217^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1378%2Fhead;p=thirdparty%2Flxc.git python3-lxc: fix api_test.py on s390x The api_test.py script uses Trusty release by default, which does not have s390x image. Switch to Xenial to solve this. Signed-off-by: Po-Hsu Lin --- diff --git a/src/python-lxc/examples/api_test.py b/src/python-lxc/examples/api_test.py index b8b5ee66c..cd7ea7788 100755 --- a/src/python-lxc/examples/api_test.py +++ b/src/python-lxc/examples/api_test.py @@ -66,7 +66,7 @@ except: print("Creating rootfs using 'download', arch=%s" % arch) container.create("download", 0, {"dist": "ubuntu", - "release": "trusty", + "release": "xenial", "arch": arch}) assert(container.defined)