summaryrefslogtreecommitdiffstats
path: root/crypto/openssh/opensshd.init.in
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssh/opensshd.init.in')
-rwxr-xr-xcrypto/openssh/opensshd.init.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/openssh/opensshd.init.in b/crypto/openssh/opensshd.init.in
index 0db60ca..517345b 100755
--- a/crypto/openssh/opensshd.init.in
+++ b/crypto/openssh/opensshd.init.in
@@ -21,6 +21,7 @@ HOST_KEY_RSA1=$sysconfdir/ssh_host_key
HOST_KEY_DSA=$sysconfdir/ssh_host_dsa_key
HOST_KEY_RSA=$sysconfdir/ssh_host_rsa_key
@COMMENT_OUT_ECC@HOST_KEY_ECDSA=$sysconfdir/ssh_host_ecdsa_key
+HOST_KEY_ED25519=$sysconfdir/ssh_host_ed25519_key
checkkeys() {
@@ -36,6 +37,9 @@ checkkeys() {
@COMMENT_OUT_ECC@ if [ ! -f $HOST_KEY_ECDSA ]; then
@COMMENT_OUT_ECC@ ${SSH_KEYGEN} -t ecdsa -f ${HOST_KEY_ECDSA} -N ""
@COMMENT_OUT_ECC@ fi
+ if [ ! -f $HOST_KEY_ED25519 ]; then
+ ${SSH_KEYGEN} -t ed25519 -f ${HOST_KEY_ED25519} -N ""
+ fi
}
stop_service() {
OpenPOWER on IntegriCloud