We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c839577 commit 31fb4f4Copy full SHA for 31fb4f4
src/bin/zmsshkeygen
@@ -48,10 +48,10 @@ ssh-keygen -f ${keyfile} -b 2048 -N '' \
48
-t ${keytype} -C ${zimbra_server_hostname}
49
50
# Starting with OpenSSH 7.8 by default, the key is created with the OpenSSH private key format instead of the OpenSSL PEM format.
51
-# Check the format of KEY, and create KEY in OpenSSL PEM format.
+# Check the format of KEY and convert to OpenSSL PEM format.
52
grep "BEGIN OPENSSH PRIVATE KEY" ${keyfile} > /dev/null 2>&1
53
if [ $? = 0 ]; then
54
- ssh-keygen -m PEM -f ${keyfile} -b 2048 -N '' \ -t ${keytype} -C ${zimbra_server_hostname}
+ ssh-keygen -p -m PEM -f ${keyfile} -b 2048 -N '' -t ${keytype} -C ${zimbra_server_hostname}
55
fi
56
pubkey=`cat ${keyfile}.pub`
57
0 commit comments