diff options
author | Jameson Graef Rollins <jrollins@finestructure.net> | 2008-11-16 03:22:18 -0500 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@finestructure.net> | 2008-11-16 03:22:18 -0500 |
commit | 5d9949335aeb1dec04f530cbb3dfcac24288706a (patch) | |
tree | e4c81a45e2dcfdd46409beab222d122751f5f6d7 /src | |
parent | dd002c89fc4dccabc16d488a15a40cc88383605f (diff) | |
parent | d056cc64effacd7936fddb6e696957868fff7eed (diff) |
Merge commit 'dkg/master'
Conflicts:
packaging/debian/changelog
Diffstat (limited to 'src')
-rwxr-xr-x | src/monkeysphere-server | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/monkeysphere-server b/src/monkeysphere-server index 665d916..bb26c04 100755 --- a/src/monkeysphere-server +++ b/src/monkeysphere-server @@ -399,7 +399,11 @@ EOF (umask 077 && \ gpg_host --export-secret-key "$fingerprint" | \ openpgp2ssh "$fingerprint" > "${SYSDATADIR}/ssh_host_rsa_key") - log info "private SSH host key output to file: ${SYSDATADIR}/ssh_host_rsa_key" + log info "SSH host private key output to file: ${SYSDATADIR}/ssh_host_rsa_key" + ssh-keygen -y -f "${SYSDATADIR}/ssh_host_rsa_key" > "${SYSDATADIR}/ssh_host_rsa_key.pub" + log info "SSH host public key output to file: ${SYSDATADIR}/ssh_host_rsa_key.pub" + gpg_authentication --export-options export-minimal --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" } # extend the lifetime of a host key: |