diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-06-19 01:53:05 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-06-19 01:53:05 -0400 |
commit | 208f6c2cd469cf46a51b11c0ea58723f4a18f9ab (patch) | |
tree | 6eac56fd03edbfb7ffbc80d8d1f3b9647091e902 | |
parent | 7e23258c90a1e1c851de756f678ae7bbbede81b5 (diff) |
clarify why monkeysphere-server publish_key is currently non-functional.
-rw-r--r-- | src/common | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -561,6 +561,8 @@ publish_server_key() { # FIXME: need to figure out better way to identify host key # dummy command so as not to publish fakes keys during testing # eventually: - #gpg --send-keys --keyserver "$KEYSERVER" $(hostname -f) - echo "NOT PUBLISHED: gpg --send-keys --keyserver $KEYSERVER $(hostname -f)" + #gpg --keyserver "$KEYSERVER" --send-keys $(hostname -f) + echo "NOT PUBLISHED (to avoid permanent publication errors during monkeysphere development). +To publish manually, do: gpg --keyserver $KEYSERVER --send-keys $(hostname -f)" + return 1 } |