summaryrefslogtreecommitdiff
path: root/src/share/ma/add_certifier
diff options
context:
space:
mode:
authorMatt Goins <mjgoins@openflows.com>2009-02-18 15:19:17 -0500
committerMatt Goins <mjgoins@openflows.com>2009-02-18 15:19:17 -0500
commit3b48f2e80fac8d0fc62537ed07b3d1f1946648cd (patch)
tree2feb4c03aac92cacb7a37eda9def378bde4ee5a3 /src/share/ma/add_certifier
parent82c81bafc0e49dcd6aa507b14cf78af35a609368 (diff)
parenteff43adce6a763d622fcc254e7cdc210d4573103 (diff)
Merge commit 'jrollins/master'
Diffstat (limited to 'src/share/ma/add_certifier')
-rw-r--r--src/share/ma/add_certifier5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/share/ma/add_certifier b/src/share/ma/add_certifier
index 54ea673..d34f0de 100644
--- a/src/share/ma/add_certifier
+++ b/src/share/ma/add_certifier
@@ -151,14 +151,15 @@ 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
+ gpg_core --quiet --command-fd 0 --no-tty --edit-key "0x${fingerprint}!" \
+ 2>&1 | log debug ; then
# transfer the new sigs back to the sphere keyring
gpg_core_sphere_sig_transfer
# update the sphere trustdb
log debug "updating sphere trustdb..."
- gpg_sphere "--check-trustdb"
+ gpg_sphere "--check-trustdb" 2>&1 | log debug
log info "Identity certifier added."
else