On 5/8/19 10:56 AM, Gerd Hoffmann wrote: > Configure apt proxy so package downloads > can be cached and can pass firewalls.
Yay \o/ > > Signed-off-by: Gerd Hoffmann <kra...@redhat.com> > --- > tests/vm/ubuntu.i386 | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/tests/vm/ubuntu.i386 b/tests/vm/ubuntu.i386 > index a22d137e76df..b869afd212fa 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") Some users only use 'https_proxy' (or FTP): https://lists.gnu.org/archive/html/qemu-devel/2018-06/msg08413.html > + 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", >