From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1445698-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 62021158094 for <garchives@archives.gentoo.org>; Mon, 10 Oct 2022 23:56:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D5F5E08FA; Mon, 10 Oct 2022 23:56:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7FE4EE08FA for <gentoo-commits@lists.gentoo.org>; Mon, 10 Oct 2022 23:56:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4502B340E6A for <gentoo-commits@lists.gentoo.org>; Mon, 10 Oct 2022 23:56:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B5D055B for <gentoo-commits@lists.gentoo.org>; Mon, 10 Oct 2022 23:56:42 +0000 (UTC) From: "John Helmert III" <ajak@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "John Helmert III" <ajak@gentoo.org> Message-ID: <1665446161.1731d58dd5b7cffbb6bd8dc3bd49e9e8642b814f.ajak@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: / X-VCS-Repository: proj/qa-scripts X-VCS-Files: keyrings.inc.bash X-VCS-Directories: / X-VCS-Committer: ajak X-VCS-Committer-Name: John Helmert III X-VCS-Revision: 1731d58dd5b7cffbb6bd8dc3bd49e9e8642b814f X-VCS-Branch: master Date: Mon, 10 Oct 2022 23:56:42 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8a4c88ad-640a-482d-be6a-963bd1a61080 X-Archives-Hash: d85c9bb48accc30a1c7a63e223e6c32a commit: 1731d58dd5b7cffbb6bd8dc3bd49e9e8642b814f Author: John Helmert III <ajak <AT> gentoo <DOT> org> AuthorDate: Mon Oct 10 23:53:44 2022 +0000 Commit: John Helmert III <ajak <AT> gentoo <DOT> org> CommitDate: Mon Oct 10 23:56:01 2022 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=1731d58d keyrings: disable using local keyserver Somehow this is vastly, vastly slower than simply using keys.gentoo.org even though they should be resolving to the same host. Bug: https://bugs.gentoo.org/876532 Signed-off-by: John Helmert III <ajak <AT> gentoo.org> keyrings.inc.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keyrings.inc.bash b/keyrings.inc.bash index 58881ae..cc89de0 100644 --- a/keyrings.inc.bash +++ b/keyrings.inc.bash @@ -11,8 +11,8 @@ INFRA_SYSTEM_RULE='(&(gentooAccess=infra-system.group)(gentooStatus=active))' export KS_GENTOO=hkps://keys.gentoo.org/ # Use local keyserver for speedup -KS_GENTOO_LOCAL=${HOSTNAME%.gentoo.org}.keys.gentoo.org -dig $KS_GENTOO_LOCAL +short |grep -sq . && export KS_GENTOO=hkps://${KS_GENTOO_LOCAL} +# KS_GENTOO_LOCAL=${HOSTNAME%.gentoo.org}.keys.gentoo.org +# dig $KS_GENTOO_LOCAL +short |grep -sq . && export KS_GENTOO=hkps://${KS_GENTOO_LOCAL} #export KS_SKS=hkps://hkps.pool.sks-keyservers.net/ # Disabled pending security announcement export KS_OPENPGP=hkps://keys.openpgp.org/ # runs Hagrid