From ea119211b216a132dc214b8a40f70adcc758d93e Mon Sep 17 00:00:00 2001 From: Mangix Date: Fri, 27 Nov 2015 20:03:47 -0800 Subject: [PATCH] openssh: remove dsa and add ecdsa + ed25519 to initial keygen. Signed-off by: Rosen Penev --- net/openssh/files/sshd.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/openssh/files/sshd.init b/net/openssh/files/sshd.init index c5a54e007..c4354bb2a 100644 --- a/net/openssh/files/sshd.init +++ b/net/openssh/files/sshd.init @@ -8,7 +8,7 @@ USE_PROCD=1 PROG=/usr/sbin/sshd start_service() { - for type in rsa dsa; do { + for type in rsa ecdsa ed25519; do { # check for keys key=/etc/ssh/ssh_host_${type}_key [ ! -f $key ] && {