diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-08-13 16:49:17 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-08-13 16:49:17 -0400 |
commit | 6f34ff65e63588a27a4076ef79f0737ea38cf68b (patch) | |
tree | e9144f469b3e8da354ad53084413002d2b1a7701 /src | |
parent | dfb394d65acbb060bc6350b7829024fd641aa73d (diff) |
making monkeysphere-server publish-key stricter about choice of emitted host key.
Diffstat (limited to 'src')
-rwxr-xr-x | src/monkeysphere-server | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/monkeysphere-server b/src/monkeysphere-server index 3ca0656..d9b8676 100755 --- a/src/monkeysphere-server +++ b/src/monkeysphere-server @@ -372,10 +372,10 @@ 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_authentication "--keyserver $KEYSERVER --send-keys $(hostname -f)" + #gpg_authentication "--keyserver $KEYSERVER --send-keys =ssh://$(hostname -f)" echo "NOT PUBLISHED (to avoid permanent publication errors during monkeysphere development)." echo "The following command should publish the key:" - echo "monkeysphere-server gpg-authentication-cmd '--keyserver $KEYSERVER --send-keys $(hostname -f)'" + echo "monkeysphere-server gpg-authentication-cmd '--keyserver $KEYSERVER --send-keys =ssh://$(hostname -f)'" exit 255 } |