Fix regexp bug
This commit is contained in:
parent
37af9bd7ed
commit
6a91dfcfe4
|
@ -2,10 +2,10 @@
|
||||||
- name: Check SSH daemon configuration
|
- name: Check SSH daemon configuration
|
||||||
ansible.builtin.lineinfile:
|
ansible.builtin.lineinfile:
|
||||||
path: /etc/ssh/sshd_config
|
path: /etc/ssh/sshd_config
|
||||||
regexp: "[^#]{{ item.key }}.*"
|
regexp: "^{{ item.key }}"
|
||||||
line: "{{ item.key }} {{ item.value }}"
|
line: "{{ item.key }} {{ item.value }}"
|
||||||
state: present
|
state: present
|
||||||
validate: "sshd -t -f %s"
|
validate: "sshd -t -f %s"
|
||||||
mode: 0644
|
mode: 0644
|
||||||
loop: "{{ sshd_options | dict2items }}"
|
loop: "{{ sshd_options | dict2items }}"
|
||||||
become: true
|
become: true
|
Loading…
Reference in New Issue