Fix regexp bug

This commit is contained in:
Santiago Lo Coco 2024-04-13 21:15:18 +02:00
parent 37af9bd7ed
commit 6a91dfcfe4
1 changed files with 2 additions and 2 deletions

View File

@ -2,10 +2,10 @@
- name: Check SSH daemon configuration
ansible.builtin.lineinfile:
path: /etc/ssh/sshd_config
regexp: "[^#]{{ item.key }}.*"
regexp: "^{{ item.key }}"
line: "{{ item.key }} {{ item.value }}"
state: present
validate: "sshd -t -f %s"
mode: 0644
loop: "{{ sshd_options | dict2items }}"
become: true
become: true