Version in base suite: 4.0.6-2 Base version: lxc_4.0.6-2 Target version: lxc_4.0.6-2+deb11u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/l/lxc/lxc_4.0.6-2.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/l/lxc/lxc_4.0.6-2+deb11u1.dsc changelog | 10 +++++++ patches/0005-lxc-download-Switch-GPG-server.patch | 30 ++++++++++++++++++++++ patches/series | 1 3 files changed, 41 insertions(+) diff -Nru lxc-4.0.6/debian/changelog lxc-4.0.6/debian/changelog --- lxc-4.0.6/debian/changelog 2021-06-11 19:43:41.000000000 +0000 +++ lxc-4.0.6/debian/changelog 2022-01-13 19:57:39.000000000 +0000 @@ -1,3 +1,13 @@ +lxc (1:4.0.6-2+deb11u1) bullseye; urgency=medium + + * lxc-download: Switch GPG server. + The default server used to download gpg keys from has been deprecated, + and therefore creating containers using the `download` template is now + broken. This is fixed with an upstream patch by Stéphane Graber that + points to a valid server. (Closes: #991615) + + -- Antonio Terceiro Thu, 13 Jan 2022 16:57:39 -0300 + lxc (1:4.0.6-2) unstable; urgency=medium * d/contrib/lxc-net: Add a commented dnsmasq reference for the users to be diff -Nru lxc-4.0.6/debian/patches/0005-lxc-download-Switch-GPG-server.patch lxc-4.0.6/debian/patches/0005-lxc-download-Switch-GPG-server.patch --- lxc-4.0.6/debian/patches/0005-lxc-download-Switch-GPG-server.patch 1970-01-01 00:00:00.000000000 +0000 +++ lxc-4.0.6/debian/patches/0005-lxc-download-Switch-GPG-server.patch 2022-01-13 19:57:39.000000000 +0000 @@ -0,0 +1,30 @@ +From: =?utf-8?q?St=C3=A9phane_Graber?= +Date: Sun, 27 Jun 2021 23:42:52 -0400 +Subject: lxc-download: Switch GPG server +MIME-Version: 1.0 +Content-Type: text/plain; charset="utf-8" +Content-Transfer-Encoding: 8bit + +Signed-off-by: Stéphane Graber +--- + templates/lxc-download.in | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/templates/lxc-download.in b/templates/lxc-download.in +index d688b8f..2f6cf2a 100644 +--- a/templates/lxc-download.in ++++ b/templates/lxc-download.in +@@ -56,11 +56,11 @@ LXC_PATH= + LXC_ROOTFS= + + if [ -z "${DOWNLOAD_KEYSERVER:-}" ]; then +- DOWNLOAD_KEYSERVER="hkp://pool.sks-keyservers.net" ++ DOWNLOAD_KEYSERVER="hkp://keyserver.ubuntu.com" + + # Deal with GPG over http proxy + if [ -n "${http_proxy:-}" ]; then +- DOWNLOAD_KEYSERVER="hkp://p80.pool.sks-keyservers.net:80" ++ DOWNLOAD_KEYSERVER="hkp://keyserver.ubuntu.com:80" + DOWNLOAD_GPG_PROXY="--keyserver-options http-proxy=\"${http_proxy}\"" + fi + fi diff -Nru lxc-4.0.6/debian/patches/series lxc-4.0.6/debian/patches/series --- lxc-4.0.6/debian/patches/series 2021-06-11 19:43:41.000000000 +0000 +++ lxc-4.0.6/debian/patches/series 2022-01-13 19:57:39.000000000 +0000 @@ -2,3 +2,4 @@ 0005-lxc.service-Starts-after-remote-fs.target.patch 0006-lxc.pc.in-removes-DLOG_LIBS-which-is-not-expanded-up.patch 0007-conf-fix-containers-retaining-CAP_NET_ADMIN.patch +0005-lxc-download-Switch-GPG-server.patch