You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
991 B

  1. From 3efa0cf3455cbe330b4e79a647a57ad8e9cf3476 Mon Sep 17 00:00:00 2001
  2. From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber@ubuntu.com>
  3. Date: Sun, 27 Jun 2021 23:42:52 -0400
  4. Subject: [PATCH] lxc-download: Switch GPG server
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
  9. ---
  10. templates/lxc-download.in | 4 ++--
  11. 1 file changed, 2 insertions(+), 2 deletions(-)
  12. --- a/templates/lxc-download.in
  13. +++ b/templates/lxc-download.in
  14. @@ -55,11 +55,11 @@ LXC_PATH=
  15. LXC_ROOTFS=
  16. if [ -z "${DOWNLOAD_KEYSERVER:-}" ]; then
  17. - DOWNLOAD_KEYSERVER="hkp://pool.sks-keyservers.net"
  18. + DOWNLOAD_KEYSERVER="hkp://keyserver.ubuntu.com"
  19. # Deal with GPG over http proxy
  20. if [ -n "${http_proxy:-}" ]; then
  21. - DOWNLOAD_KEYSERVER="hkp://p80.pool.sks-keyservers.net:80"
  22. + DOWNLOAD_KEYSERVER="hkp://keyserver.ubuntu.com:80"
  23. DOWNLOAD_GPG_PROXY="--keyserver-options http-proxy=\"${http_proxy}\""
  24. fi
  25. fi