From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 B32B8158094 for ; Mon, 10 Oct 2022 19:53:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5F8AE091B; Mon, 10 Oct 2022 19:53:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 CB402E091B for ; Mon, 10 Oct 2022 19:53:48 +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 EA154340997 for ; Mon, 10 Oct 2022 19:53:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 598B1523 for ; Mon, 10 Oct 2022 19:53:45 +0000 (UTC) From: "John Helmert III" 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" Message-ID: <1665431581.d51605cc9b7070cd294989022fedc4ddc4faafb8.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: d51605cc9b7070cd294989022fedc4ddc4faafb8 X-VCS-Branch: master Date: Mon, 10 Oct 2022 19:53:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d3e50c1b-818f-459a-82ee-2eee5061037c X-Archives-Hash: a3dddb92246a0087ce06b9819284d26c commit: d51605cc9b7070cd294989022fedc4ddc4faafb8 Author: John Helmert III gentoo org> AuthorDate: Mon Oct 10 19:53:01 2022 +0000 Commit: John Helmert III gentoo org> CommitDate: Mon Oct 10 19:53:01 2022 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=d51605cc keyrings.inc.bash: gpgconf --kill all on cleanup Signed-off-by: John Helmert III gentoo.org> keyrings.inc.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyrings.inc.bash b/keyrings.inc.bash index 9c2a23b..58881ae 100644 --- a/keyrings.inc.bash +++ b/keyrings.inc.bash @@ -81,7 +81,7 @@ push_keys() { export GPG_TMPDIR='' clean_tmp() { # Ensure any agent is closed down - gpgconf --kill gpg-agent + gpgconf --kill all [ -n "$GPG_TMPDIR" ] && [ -d "$GPG_TMPDIR" ] && rm -rf "$GPG_TMPDIR" } setup_tmp() {