Change import_key to take the path to the file to import as an argument. dkg won...
authorJameson Graef Rollins <jrollins@finestructure.net>
Mon, 16 Feb 2009 04:25:51 +0000 (23:25 -0500)
committerJameson Graef Rollins <jrollins@finestructure.net>
Mon, 16 Feb 2009 04:25:51 +0000 (23:25 -0500)
src/share/mh/import_key

index 9415b4d72ec934463f19ed8e77d39d06fdcef0e0..cab2cf55e27df17573840e54e4fcab5882fa0537 100644 (file)
 
 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