diff options
author | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-02-15 23:25:51 -0500 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-02-15 23:25:51 -0500 |
commit | 9f033ac0c9a96acbbc583327026adb37e4d5a8a9 (patch) | |
tree | 906f030774798aa1fea6b18c76e593fa283218db /src/share | |
parent | e5e41eb0651bf74398b449d81ede51086dd25167 (diff) |
Change import_key to take the path to the file to import as an argument. dkg won't like this, but I think it's necessary so that we can generate the ssh pub key file, which is needed for subsequenty works.
Diffstat (limited to 'src/share')
-rw-r--r-- | src/share/mh/import_key | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/share/mh/import_key b/src/share/mh/import_key index 9415b4d..cab2cf5 100644 --- a/src/share/mh/import_key +++ b/src/share/mh/import_key @@ -13,11 +13,14 @@ 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 @@ -26,14 +29,16 @@ 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 |