From: Daniel Kahn Gillmor Date: Wed, 13 Aug 2008 20:49:17 +0000 (-0400) Subject: making monkeysphere-server publish-key stricter about choice of emitted host key. X-Git-Tag: monkeysphere_0.8-1~31^2~1 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=6f34ff65e63588a27a4076ef79f0737ea38cf68b;p=monkeysphere.git making monkeysphere-server publish-key stricter about choice of emitted host key. --- 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 }