X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fshare%2Fmh%2Fimport_key;h=e5982ca62a2f9bd0f418ae82bacdc918fe777575;hb=b55981fb8aa689aede58ed7ab4d8692c52b5c472;hp=9415b4d72ec934463f19ed8e77d39d06fdcef0e0;hpb=d06d6df892ab42e184d22f9a6686ae6689a711a1;p=monkeysphere.git diff --git a/src/share/mh/import_key b/src/share/mh/import_key index 9415b4d..e5982ca 100644 --- a/src/share/mh/import_key +++ b/src/share/mh/import_key @@ -13,27 +13,34 @@ import_key() { +local keyFile local hostName local userID -hostName=${1:-$(hostname -f)} +keyFile="$1" +[ -f "$keyFile" ] +hostName=${2:-$(hostname -f)} userID="ssh://${hostName}" # create host home -mkdir -p "$GNUPGHOME_HOST" -chmod 700 "$GNUPGHOME_HOST" +mkdir -p "${MHDATADIR}" +mkdir -p "${MHTMPDIR}" +mkdir -p "${GNUPGHOME_HOST}" +chmod 700 "${GNUPGHOME_HOST}" log verbose "importing ssh key..." # translate ssh key to a private key -PEM2OPENPGP_USAGE_FLAGS=authenticate pem2openpgp "$userID" | \ - gpg_host --import +PEM2OPENPGP_USAGE_FLAGS=authenticate pem2openpgp "$userID" <"$keyFile" \ + | gpg_host --import # load the new host fpr into the fpr variable load_fingerprint_secret -# export to ssh public key file -create_ssh_pub_file +# export the host public key to the monkeysphere ssh pub key file +log debug "creating ssh public key file..." +ssh-keygen -y -f "$keyFile" > "$HOST_KEY_PUB" +log info "SSH host public key file: $HOST_KEY_PUB" # export to gpg public key to file create_gpg_pub_file