From: Mangix Date: Sat, 28 Nov 2015 04:03:47 +0000 (-0800) Subject: openssh: remove dsa and add ecdsa + ed25519 to initial keygen. X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=ea119211b216a132dc214b8a40f70adcc758d93e;p=feed%2Fpackages.git openssh: remove dsa and add ecdsa + ed25519 to initial keygen. Signed-off by: Rosen Penev --- diff --git a/net/openssh/files/sshd.init b/net/openssh/files/sshd.init index c5a54e0079..c4354bb2aa 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 ] && {