Your message dated Wed, 31 Jan 2007 11:21:00 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Bug#408297: should honor mirror/*/proxy when fetching keys for 
local repositories
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apt-setup
Version: 1:0.16
Severity: normal

Bug #348509 added support for local repositories, including fetching the
signing key for each repo.

It seems mirror/*/proxy isn't being honored when fetching the key, since the
environment variable http_proxy isn't being set before wget(1) is called.

Some background: we PXE boot d-i with preseeded configuration. For
installation, machines are numbered into a private network that does not
have direct access to our APT repository. Instead, a proxy is used during
installation. IIRC (it's been a couple of weeks), d-i was leaving this
repository commented out because it wouldn't pass verification without the
signing key. Once I renumbered our repository so it was reachable from the
installation network, this local repo was used by d-i.

Maybe this patch will help? I haven't had a chance to rebuild a d-i image
to verify, but unless something else in the install process is setting
http_proxy, it doesn't seem to be available to wget.

--- 60local.orig        2006-07-25 22:49:31.000000000 +0000
+++ 60local     2007-01-24 16:46:50.000002000 +0000
@@ -32,6 +32,12 @@
                echo "deb-src $repository" >> $file
        fi
        if [ -n "$key" ]; then
+               protocol=$(echo "$repository" | sed 's/:.*//')
+               db_get mirror/$protocol/proxy
+               proxy="$RET"
+               if [ -n "$proxy" ]; then
+                       export http_proxy="$proxy"
+               fi
                # fetch the key
                wget "$key" -O "$ROOT/tmp/key$i.pub"
                # add it to the keyring


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.12-10-xeon
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


--- End Message ---
--- Begin Message ---
Version: 1:0.17

Closing. Upload was not an NMU.

--- End Message ---

Reply via email to