Explorar el Código

Merge pull request #2042 from neheb/master

openssh: remove dsa and add ecdsa + ed25519 to initial keygen.
tripolar hace 9 años
padre
commit
1f18c200a2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      net/openssh/files/sshd.init

+ 1
- 1
net/openssh/files/sshd.init Ver fichero

@@ -8,7 +8,7 @@ USE_PROCD=1
8 8
 PROG=/usr/sbin/sshd
9 9
 
10 10
 start_service() {
11
-	for type in rsa dsa; do {
11
+	for type in rsa ecdsa ed25519; do {
12 12
 		# check for keys
13 13
 		key=/etc/ssh/ssh_host_${type}_key
14 14
 		[ ! -f $key ] && {