Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qa-scripts:master commit in: /
Date: Sun, 27 Feb 2022 19:27:38
Message-Id: 1645989705.74e7faa94ef8c3d1ca88902ae504efeb6997cff7.robbat2@gentoo
1 commit: 74e7faa94ef8c3d1ca88902ae504efeb6997cff7
2 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 19:21:45 2022 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 19:21:45 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=74e7faa9
7
8 keyrings-export: another spot for infra-devs
9
10 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
11
12 keyrings-export.bash | 4 ++++
13 1 file changed, 4 insertions(+)
14
15 diff --git a/keyrings-export.bash b/keyrings-export.bash
16 index 5b6dc17..f07df83 100755
17 --- a/keyrings-export.bash
18 +++ b/keyrings-export.bash
19 @@ -27,6 +27,9 @@ export_keys "${OUTPUT_DIR}"/active-devs.gpg \
20 "${COMMITTING_DEVS[@]}" \
21 "${NONCOMMITTING_DEVS[@]}"
22
23 +export_keys "${OUTPUT_DIR}"/infra-devs.gpg \
24 + "${INFRA_DEVS[@]}"
25 +
26 export_keys "${OUTPUT_DIR}"/retired-devs.gpg \
27 "${RETIRED_DEVS[@]}"
28
29 @@ -35,6 +38,7 @@ export_keys "${OUTPUT_DIR}"/all-devs.gpg \
30 "${SYSTEM_KEYS[@]}" \
31 "${COMMITTING_DEVS[@]}" \
32 "${NONCOMMITTING_DEVS[@]}" \
33 + "${INFRA_DEVS[@]}" \
34 "${RETIRED_DEVS[@]}"
35
36 clean_tmp