diff options
author | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-01-31 23:44:38 -0500 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-01-31 23:44:38 -0500 |
commit | bbbc5bb8accf1db41d6a95e227f028376823cddf (patch) | |
tree | 6b579205e538dd7033ec78dbd373582f328c9311 /src/share/mh/import_key | |
parent | 2e534772b9b105ceabfe140d1552770b5c9d76ea (diff) |
fix some things bugs from the separation transition, and try to fix the test scripts
Diffstat (limited to 'src/share/mh/import_key')
-rw-r--r-- | src/share/mh/import_key | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/share/mh/import_key b/src/share/mh/import_key index 386e02d..c0d5956 100644 --- a/src/share/mh/import_key +++ b/src/share/mh/import_key @@ -77,10 +77,9 @@ fingerprint=$(fingerprint_server_key) # export host ownertrust to authentication keyring log verbose "setting ultimate owner trust for host key..." echo "${fingerprint}:6:" | gpg_host "--import-ownertrust" -echo "${fingerprint}:6:" | gpg_authentication "--import-ownertrust" # export public key to file -gpg_authentication "--export-options export-minimal --armor --export 0x${fingerprint}\!" > "${SYSDATADIR}/ssh_host_rsa_key.pub.gpg" +gpg_host "--export-options export-minimal --armor --export 0x${fingerprint}\!" > "${SYSDATADIR}/ssh_host_rsa_key.pub.gpg" log info "SSH host public key in OpenPGP form: ${SYSDATADIR}/ssh_host_rsa_key.pub.gpg" # show info about new key |