diff options
author | John Helmert III <ajak@gentoo.org> | 2022-10-10 18:53:44 -0500 |
---|---|---|
committer | John Helmert III <ajak@gentoo.org> | 2022-10-10 18:56:01 -0500 |
commit | 1731d58dd5b7cffbb6bd8dc3bd49e9e8642b814f (patch) | |
tree | 8a3bcc8e9c43eea6c778b71c7283ed7ad86603a6 | |
parent | keyrings.inc.bash: gpgconf --kill all on cleanup (diff) | |
download | qa-scripts-1731d58dd5b7cffbb6bd8dc3bd49e9e8642b814f.tar.gz qa-scripts-1731d58dd5b7cffbb6bd8dc3bd49e9e8642b814f.tar.bz2 qa-scripts-1731d58dd5b7cffbb6bd8dc3bd49e9e8642b814f.zip |
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@gentoo.org>
-rw-r--r-- | keyrings.inc.bash | 4 |
1 files 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 |