diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-28 16:33:21 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-28 16:33:21 +0100 |
commit | d9b4628aa1ca8bfeeef7c521990a67f2c5b56db6 (patch) | |
tree | ea699d71cc0670b0ac5e416303fefa847ffd4156 /etc/pbuilderrc | |
parent | c534025eda52c6bcba00725be82726af1ce698e0 (diff) | |
download | jenkins.debian.net-d9b4628aa1ca8bfeeef7c521990a67f2c5b56db6.tar.xz |
reproducible: use proxy only for apt, but don't set http_proxy environment variable. see #780587 for more info
Diffstat (limited to 'etc/pbuilderrc')
-rw-r--r-- | etc/pbuilderrc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/pbuilderrc b/etc/pbuilderrc index 491441cf..e21c1ae6 100644 --- a/etc/pbuilderrc +++ b/etc/pbuilderrc @@ -7,8 +7,10 @@ MIRRORSITE=http://ftp.de.debian.org/debian/ EXTRAPACKAGES="fakeroot" APTCACHE="" -export http_proxy="http://localhost:3128" COMPRESSPROG="pigz" +# unset proxy, see #780587 +unset http_proxy +export -n http_proxy # remove /run/shm bindmount once we are running jessie - this is a workaround for #700591 # /sys and /proc were added as workarounds for #773767 BINDMOUNTS="$BINDMOUNTS /run/shm /dev/shm /sys" |