commit 1f18c200a2fdefc2290e7b84c55b45f40c3bf003
parent 65243cc8f8a179fd87de4ab70a2304454db08053
Author: tripolar <tripolar@users.noreply.github.com>
Date: Mon, 7 Dec 2015 16:30:18 +0100
Merge pull request #2042 from neheb/master
openssh: remove dsa and add ecdsa + ed25519 to initial keygen.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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 ] && {