diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-03-14 10:46:18 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-03-14 16:07:41 -0400 |
commit | 39d013c4d307d6a844f8dc2deabf42adc0a8a388 (patch) | |
tree | 18e2d8f99c06ed0346b733b66e7e608a5b9972fd | |
parent | 42f7fec024d11c2ff20299f73254eda5b06ed181 (diff) |
avoid checking trustdb from monkeysphere-host (Closes: MS #1957)
-rwxr-xr-x | src/monkeysphere-host | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/monkeysphere-host b/src/monkeysphere-host index f5374bd..2c19331 100755 --- a/src/monkeysphere-host +++ b/src/monkeysphere-host @@ -74,7 +74,7 @@ EOF # function to interact with the gpg keyring gpg_host() { - GNUPGHOME="$GNUPGHOME_HOST" gpg --no-greeting --quiet --no-tty "$@" + GNUPGHOME="$GNUPGHOME_HOST" gpg --no-auto-check-trust-db --no-greeting --quiet --no-tty "$@" } # list the info about the a key, in colon format, to stdout |