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 D297215808B for ; Sun, 27 Feb 2022 19:27:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8E4EE084A; Sun, 27 Feb 2022 19:27:37 +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 B7F31E084A for ; Sun, 27 Feb 2022 19:27:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 882B33434CB for ; Sun, 27 Feb 2022 19:27:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6BF6D0 for ; Sun, 27 Feb 2022 19:27:34 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1645989705.74e7faa94ef8c3d1ca88902ae504efeb6997cff7.robbat2@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: / X-VCS-Repository: proj/qa-scripts X-VCS-Files: keyrings-export.bash X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 74e7faa94ef8c3d1ca88902ae504efeb6997cff7 X-VCS-Branch: master Date: Sun, 27 Feb 2022 19:27:34 +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: e68d1eb0-a363-4f6a-8e7b-32c99e6573c7 X-Archives-Hash: 684a48c48041bd6ef221eb497d310f01 commit: 74e7faa94ef8c3d1ca88902ae504efeb6997cff7 Author: Robin H. Johnson gentoo org> AuthorDate: Sun Feb 27 19:21:45 2022 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sun Feb 27 19:21:45 2022 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=74e7faa9 keyrings-export: another spot for infra-devs Signed-off-by: Robin H. Johnson gentoo.org> keyrings-export.bash | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/keyrings-export.bash b/keyrings-export.bash index 5b6dc17..f07df83 100755 --- a/keyrings-export.bash +++ b/keyrings-export.bash @@ -27,6 +27,9 @@ export_keys "${OUTPUT_DIR}"/active-devs.gpg \ "${COMMITTING_DEVS[@]}" \ "${NONCOMMITTING_DEVS[@]}" +export_keys "${OUTPUT_DIR}"/infra-devs.gpg \ + "${INFRA_DEVS[@]}" + export_keys "${OUTPUT_DIR}"/retired-devs.gpg \ "${RETIRED_DEVS[@]}" @@ -35,6 +38,7 @@ export_keys "${OUTPUT_DIR}"/all-devs.gpg \ "${SYSTEM_KEYS[@]}" \ "${COMMITTING_DEVS[@]}" \ "${NONCOMMITTING_DEVS[@]}" \ + "${INFRA_DEVS[@]}" \ "${RETIRED_DEVS[@]}" clean_tmp