diff options
author | Jameson Graef Rollins <jrollins@finestructure.net> | 2008-11-16 19:10:03 -0500 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@finestructure.net> | 2008-11-16 19:10:03 -0500 |
commit | 864a89f60b05f0f32cf8ef2bb5677c2d50062749 (patch) | |
tree | 3a65915e0602fd6938ce1baf878f69180737f098 | |
parent | d91a9e05ef6c351f40d931d2f7d19e3a3979279c (diff) |
fix quoting in output of ssh_host_rsa_key.pub.gpg. remember, at the
moment the gpg_authentication function can only accept a single
argument, so the entire gpg command string needs to be in a single
quoted string.
-rwxr-xr-x | src/monkeysphere-server | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/monkeysphere-server b/src/monkeysphere-server index bb26c04..018a1ec 100755 --- a/src/monkeysphere-server +++ b/src/monkeysphere-server @@ -402,7 +402,7 @@ EOF 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" + 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" } |