From 212ea3221b069c84d8f63eb7462c94ca8df13ff9 Mon Sep 17 00:00:00 2001 From: Vlastimil Holer Date: Wed, 4 Jan 2023 18:03:24 +0100 Subject: [PATCH] fix entrypoint keygen key type to Ed25519 (#116) --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 235bc117..a7b636f0 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -3,7 +3,7 @@ set -eo pipefail if [ -z "$SSHPIPERD_SERVER_KEY" ]; then if [ ! -f /etc/ssh/ssh_host_ed25519_key ];then - ssh-keygen -t rsa -N '' -f /etc/ssh/ssh_host_ed25519_key + ssh-keygen -t ed25519 -N '' -f /etc/ssh/ssh_host_ed25519_key fi fi