summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-08-05 14:15:41 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-08-05 14:15:41 -0400
commita7e520c59cf969192baf16147d570c9a9365c191 (patch)
tree200184e953f95c2069112c00f562f43fdea5077d
parenta04f56a4b5d1020a25da1ff75f3835f194bd708c (diff)
parent31162d196d875c6b5d44c704b59b8b8743c685a9 (diff)
merged changes from Jamie McClelland.
-rw-r--r--doc/README2
-rwxr-xr-xsrc/seckey2sshagent2
-rw-r--r--website/bugs/monkeysphere-ssh-proxycommand-quiet-option.mdwn22
3 files changed, 24 insertions, 2 deletions
diff --git a/doc/README b/doc/README
index bed0380..2fc2d5f 100644
--- a/doc/README
+++ b/doc/README
@@ -10,7 +10,7 @@ Keeping your keyring up-to-date
Regularly refresh your GnuPG keyring from the keyservers. This can be
done with a simple cronjob. An example of crontab line to do this is:
-0 12 * * * /usr/bin/gpg --refresh-keys
+0 12 * * * /usr/bin/gpg --refresh-keys > /dev/null 2>&1
This would refresh your keychain every day at noon.
diff --git a/src/seckey2sshagent b/src/seckey2sshagent
index 2febff8..4b765dc 100755
--- a/src/seckey2sshagent
+++ b/src/seckey2sshagent
@@ -57,7 +57,7 @@ You can check on it with:
# if no hex string is supplied, just print an explanation.
# this covers seckey2sshagent --help, --usage, -h, etc...
-if [ "$(echo "$1" | tr -d '0-9a-fA-F')" ]; then
+if [ "$(echo "$1" | tr -d '0-9a-fA-F')" ]; then
explanation
exit
fi
diff --git a/website/bugs/monkeysphere-ssh-proxycommand-quiet-option.mdwn b/website/bugs/monkeysphere-ssh-proxycommand-quiet-option.mdwn
new file mode 100644
index 0000000..170fc7c
--- /dev/null
+++ b/website/bugs/monkeysphere-ssh-proxycommand-quiet-option.mdwn
@@ -0,0 +1,22 @@
+I don't mind the monkeysphere-ssh-proxycommand output on regular connections.
+
+For me it looks something like this with a server not participatingin the
+monkey sphere:
+
+ ms: processing host: chavez.mayfirst.org
+ ms: - key not found.
+
+And like this for a server participating:
+
+ ms: processing host: george.riseup.net
+ ms: primary key found: 7353A74E3B757F8C
+ ms: * acceptable key found.
+ ms: known_hosts file updated.
+
+However, I have some batch scripts that run ssh that also provide output, so the monkeysphere output clutters things up.
+
+I would really like to either have a -q/--quiet option, or, preferable for me
+at least, would be for silent output to be the default and have a -v/--verbose
+option to get the output. Or - maybe these should be environmental variables?
+In any event - someway to suppress informational output would be a useful
+improvement.