From cb299679bf3db7cb16f34232618d9f66e1e3c6dc Mon Sep 17 00:00:00 2001 From: Denis Knauf Date: Sun, 14 Jan 2024 21:38:50 +0100 Subject: [PATCH] path to sshd-default.conf.j2 fixed --- tasks/sshd_config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/sshd_config.yml b/tasks/sshd_config.yml index 057e79a..8383391 100644 --- a/tasks/sshd_config.yml +++ b/tasks/sshd_config.yml @@ -4,7 +4,7 @@ - when: '"debian" == ansible_facts["distribution"]|lower and 12 <= ansible_facts["distribution_version"]|int' name: 'sshd_config.d/99-default.conf' template: - src: 'sshd-default.conf' + src: 'sshd-default.conf.j2' dest: '/etc/ssh/sshd_config.d/99-default.conf' owner: root group: root