X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=src%2Fmonkeysphere-host;h=d89febb690ed92c1c84f1f27eaa0f446b63fce1b;hb=e3bb810e188cae2d40a5191500a501c85cb93381;hp=72205ada4a395d562b35c72169ac3306fe5085ec;hpb=351bf22e962c7ba6da5ee3d8cec9d77264673c88;p=monkeysphere.git diff --git a/src/monkeysphere-host b/src/monkeysphere-host index 72205ad..d89febb 100755 --- a/src/monkeysphere-host +++ b/src/monkeysphere-host @@ -302,7 +302,7 @@ show_key() { # create the ssh key tmpssh="$GNUPGHOME"/ssh_host_key_rsa_pub - gpg --export "$fingerprint" 2>/dev/null \ + gpg --export --no-armor "$fingerprint" 2>/dev/null \ | openpgp2ssh 2>/dev/null >"$tmpssh" # list the host key info @@ -379,7 +379,7 @@ COMMAND="$1" shift case $COMMAND in - 'import-key'|'i') + 'import-key'|'import'|'i') source "${MHSHAREDIR}/import_key" import_key "$@" ;; @@ -388,7 +388,7 @@ case $COMMAND in multi_key show_key "$@" ;; - 'set-expire'|'extend-key'|'e') + 'set-expire'|'extend-key'|'extend'|'e') source "${MHSHAREDIR}/set_expire" set_expire "$@" ;;