diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-02-18 12:11:47 -0500 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-02-18 12:11:47 -0500 |
commit | e3bb810e188cae2d40a5191500a501c85cb93381 (patch) | |
tree | b6afe37b95e8898cb8dd3577b62bc7859c3e3ed4 /src/monkeysphere-host | |
parent | 838f52739cc05bfaca19e49bc64c17b435022f1c (diff) |
enforce --no-armor when exporting to openpgp2ssh in case weird gpg.conf options (see bug 1625)
Diffstat (limited to 'src/monkeysphere-host')
-rwxr-xr-x | src/monkeysphere-host | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/monkeysphere-host b/src/monkeysphere-host index 6145c30..d89febb 100755 --- a/src/monkeysphere-host +++ b/src/monkeysphere-host @@ -302,7 +302,7 @@ show_key() { # create the ssh key tmpssh="$GNUPGHOME"/ssh_host_key_rsa_pub - gpg --export "$fingerprint" 2>/dev/null \ + gpg --export --no-armor "$fingerprint" 2>/dev/null \ | openpgp2ssh 2>/dev/null >"$tmpssh" # list the host key info |