From be489ab2c20c640d3f72c24cff1c3f7a93ebe15a Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Wed, 3 Aug 2022 09:57:15 +0300 Subject: fix: allow ed25519 for certs as well Sponsored-by: author --- roles/sshd/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/sshd/tasks/main.yml b/roles/sshd/tasks/main.yml index f4c2104..c94cf07 100644 --- a/roles/sshd/tasks/main.yml +++ b/roles/sshd/tasks/main.yml @@ -26,7 +26,7 @@ when: sshd_host_key is defined and sshd_host_cert is defined copy: content: | - HostKeyAlgorithms ssh-ed25519 + HostKeyAlgorithms ssh-ed25519,ssh-ed25519-cert-v01@openssh.com HostKey /etc/ssh/ssh_host_key HostCertificate /etc/ssh/ssh_host_key-cert.pub dest: /etc/ssh/sshd_config.d/host_id.conf -- cgit v1.2.1