summaryrefslogtreecommitdiff
path: root/update-keys
diff options
context:
space:
mode:
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