summaryrefslogtreecommitdiff
path: root/update-keys
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-05-15 22:37:12 +0200
committerErich Eckner <git@eckner.net>2017-05-15 22:37:12 +0200
commit315f339993251d1fca0dc178f58a0e817ba7b11c (patch)
tree9a17e7bd0eef4c5dd9f4ad3bad13891414a3bff8 /update-keys
parentb955d3f66de4d876c2f3c8dfc320edc65fe0a232 (diff)
downloadarchlinux32-keyring-315f339993251d1fca0dc178f58a0e817ba7b11c.tar.xz
added master keys and one build key
Diffstat (limited to 'update-keys')
-rwxr-xr-xupdate-keys7
1 files changed, 7 insertions, 0 deletions
diff --git a/update-keys b/update-keys
index 3c3e289..89051f7 100755
--- a/update-keys
+++ b/update-keys
@@ -48,6 +48,13 @@ while read -ra data; do
${GPG} --command-fd 0 --edit-key ${keyid}
if ! ${GPG} --list-keys --with-colons ${keyid} 2>/dev/null | grep -q '^pub:f:'; then
echo "key is not fully trusted: ${keyid} ${username}"
+ ${GPG} --list-keys --with-colons ${keyid}
+ echo
+ ${GPG} --list-sigs ${keyid}
+ while read -r a b; do
+ echo
+ ${GPG} --list-keys --with-colons ${a}
+ done < master-keyids
else
${GPG} --armor --no-emit-version --export ${keyid} >> packager/${username}.asc
fi