From adf714d45c936a3e52a832d288ff09d479a35901 Mon Sep 17 00:00:00 2001 From: Jonathan DeMasi Date: Mon, 26 Jan 2026 00:29:53 -0700 Subject: [PATCH] something is wonk here --- ansible/roles/ldap_client/tasks/sshd.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/roles/ldap_client/tasks/sshd.yaml b/ansible/roles/ldap_client/tasks/sshd.yaml index 3fc8b9a..16f1312 100644 --- a/ansible/roles/ldap_client/tasks/sshd.yaml +++ b/ansible/roles/ldap_client/tasks/sshd.yaml @@ -2,7 +2,7 @@ lineinfile: state: present path: /etc/ssh/sshd_config - regexp: '^#?AuthorizedKeysCommand' + regexp: '^#AuthorizedKeysCommand' line: 'AuthorizedKeysCommand /usr/bin/sss_ssh_authorizedkeys' notify: restart sshd @@ -10,7 +10,7 @@ lineinfile: state: present path: /etc/ssh/sshd_config - regexp: '^#?AuthorizedKeysCommandUser' + regexp: '^#AuthorizedKeysCommandUser' line: 'AuthorizedKeysCommandUser nobody' notify: restart sshd