summaryrefslogtreecommitdiff
path: root/src/share/ma/add_certifier
diff options
context:
space:
mode:
authorJameson Graef Rollins <jrollins@finestructure.net>2009-02-12 18:23:05 -0500
committerJameson Graef Rollins <jrollins@finestructure.net>2009-02-12 18:23:05 -0500
commitf3ef901ec68efe813ea5fbe9a55e80f0aaf3ee93 (patch)
treea0e66dffb79edfba7d8ac2a0e547f9cde382bfbc /src/share/ma/add_certifier
parentf54abea9da2be063b0d0ed974f6130b303b2a1c7 (diff)
fix some things in ma certifier functions:
- fix left over bad invocations of gpg_sphere --list-keys - add some more debug log output
Diffstat (limited to 'src/share/ma/add_certifier')
-rw-r--r--src/share/ma/add_certifier5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/share/ma/add_certifier b/src/share/ma/add_certifier
index 2e53455..28c229a 100644
--- a/src/share/ma/add_certifier
+++ b/src/share/ma/add_certifier
@@ -102,7 +102,7 @@ fi
export keyID
-# get the full fingerprint of a key ID
+# get the full fingerprint of new certifier key
log debug "getting fingerprint of certifier key..."
fingerprint=$(gpg_sphere "--list-key --with-colons --with-fingerprint 0x${keyID}!" \
| grep '^fpr:' | grep "$keyID" | cut -d: -f10)
@@ -126,6 +126,7 @@ fi
# export the key to the core keyring so that the core can sign the
# new certifier key
+log debug "exporting retrieved certifier key to core keyring..."
gpg_sphere "--export 0x${fingerprint}!" | gpg_core --import
case "$trust" in
@@ -154,6 +155,7 @@ EOF
)
# core ltsigns the newly imported certifier key
+log debug "executing core ltsign script..."
if echo "$ltsignCommand" | \
gpg_core --quiet --command-fd 0 --edit-key "0x${fingerprint}!" ; then
@@ -161,6 +163,7 @@ if echo "$ltsignCommand" | \
gpg_core_sphere_sig_transfer
# update the sphere trustdb
+ log debug "updating sphere trustdb..."
gpg_sphere "--check-trustdb"
log info "Identity certifier added."