The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxc/pull/3469
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) === Using the option --recv-keys I get an error on openSUSE Tumbleweed which has `gpg2-2.2.20-1.2.x86_64`. Not sure if this needs to be set differently for older systems, that do not have a recent gpg2 and thus might require the old behaviour.
From b9757e26c9286b63d27d3d8f9f441c24025853b3 Mon Sep 17 00:00:00 2001 From: Johannes Kastl <ka...@b1-systems.de> Date: Tue, 30 Jun 2020 19:13:04 +0200 Subject: [PATCH] templates/lxc-download.in: use GPG option --receive-keys instead of --recv-keys Signed-off-by: Johannes Kastl <ka...@b1-systems.de> --- templates/lxc-download.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/lxc-download.in b/templates/lxc-download.in index 58d063f4c2..60ad7dbc86 100644 --- a/templates/lxc-download.in +++ b/templates/lxc-download.in @@ -135,7 +135,7 @@ gpg_setup() { success= for _ in $(seq 3); do if $(gpg --keyserver "${DOWNLOAD_KEYSERVER}" ${DOWNLOAD_GPG_PROXY:-} \ - --recv-keys "${DOWNLOAD_KEYID}" >/dev/null 2>&1); then + --receive-keys "${DOWNLOAD_KEYID}" >/dev/null 2>&1); then success=1 break fi
_______________________________________________ lxc-devel mailing list lxc-devel@lists.linuxcontainers.org http://lists.linuxcontainers.org/listinfo/lxc-devel