summaryrefslogtreecommitdiff
path: root/package/openssh/S50sshd
diff options
context:
space:
mode:
Diffstat (limited to 'package/openssh/S50sshd')
-rw-r--r--package/openssh/S50sshd9
1 files changed, 7 insertions, 2 deletions
diff --git a/package/openssh/S50sshd b/package/openssh/S50sshd
index b65b3c8a7..d3abf7c8e 100644
--- a/package/openssh/S50sshd
+++ b/package/openssh/S50sshd
@@ -21,7 +21,6 @@ fi
# Check for the SSH2 DSA key
if [ ! -f /etc/ssh_host_dsa_key ] ; then
echo Generating DSA Key...
- echo THIS CAN TAKE A MINUTE OR TWO DEPENDING ON YOUR PROCESSOR!
echo
/usr/bin/ssh-keygen -t dsa -f /etc/ssh_host_dsa_key -C '' -N ''
fi
@@ -29,11 +28,17 @@ fi
# Check for the SSH2 ECDSA key
if [ ! -f /etc/ssh_host_ecdsa_key ]; then
echo Generating ECDSA Key...
- echo THIS CAN TAKE A MINUTE OR TWO DEPENDING ON YOUR PROCESSOR!
echo
/usr/bin/ssh-keygen -t ecdsa -f /etc/ssh_host_ecdsa_key -C '' -N ''
fi
+# Check for the ed25519 key
+if [ ! -f /etc/ssh_host_ed25519_key ]; then
+ echo Generating ed25519 Key...
+ echo
+ /usr/bin/ssh-keygen -t ed25519 -f /etc/ssh_host_ed25519_key -C '' -N ''
+fi
+
umask 077
start() {