diff options
author | Gerd Hoffmann | 2019-06-17 06:38:58 +0200 |
---|---|---|
committer | Alex Bennée | 2019-07-04 20:23:07 +0200 |
commit | c9b423d6d3fde0132ee6f31d69a1c1370a89ce1a (patch) | |
tree | 7119d457cfda8dd7356ae06f34326ef6a08bd585 /tests/vm | |
parent | tests/vm: fedora autoinstall, using serial console (diff) | |
download | qemu-c9b423d6d3fde0132ee6f31d69a1c1370a89ce1a.tar.gz qemu-c9b423d6d3fde0132ee6f31d69a1c1370a89ce1a.tar.xz qemu-c9b423d6d3fde0132ee6f31d69a1c1370a89ce1a.zip |
tests/vm: ubuntu.i386: apt proxy setup
Configure apt proxy so package downloads
can be cached and can pass firewalls.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190617043858.8290-12-kraxel@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'tests/vm')
-rwxr-xr-x | tests/vm/ubuntu.i386 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/vm/ubuntu.i386 b/tests/vm/ubuntu.i386 index 3ea459ee20..38f740eabf 100755 --- a/tests/vm/ubuntu.i386 +++ b/tests/vm/ubuntu.i386 @@ -51,6 +51,10 @@ class UbuntuX86VM(basevm.BaseVM): " ssh-authorized-keys:\n", " - %s\n" % basevm.SSH_PUB_KEY, "locale: en_US.UTF-8\n"]) + proxy = os.environ.get("http_proxy") + if not proxy is None: + udata.writelines(["apt:\n", + " proxy: %s" % proxy]) udata.close() subprocess.check_call(["genisoimage", "-output", "cloud-init.iso", "-volid", "cidata", "-joliet", "-rock", |