From a8d4923380ee0eabffbce3732aecddf72daafaa7 Mon Sep 17 00:00:00 2001 From: Denis Knauf Date: Fri, 21 Feb 2025 16:02:19 +0100 Subject: [PATCH] debian defines in sshd_config "include ...", so we should use this, instead of "Include ..." --- 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 5df3f34..c070143 100644 --- a/tasks/sshd_config.yml +++ b/tasks/sshd_config.yml @@ -56,7 +56,7 @@ path: /etc/ssh/sshd_config insertbefore: BOF regexp: '^\s*[iI]nclude\s+/etc/ssh/sshd_config.d/' - line: 'Include /etc/ssh/sshd_config.d/*.conf' + line: 'include /etc/ssh/sshd_config.d/*.conf' firstmatch: true tags: sshd - when: 'false == sshd_include_option'