12 lines
322 B
YAML
12 lines
322 B
YAML
---
|
|
- name: Check SSH daemon configuration
|
|
ansible.builtin.lineinfile:
|
|
path: /etc/ssh/sshd_config
|
|
regexp: "^{{ item.key }}"
|
|
line: "{{ item.key }} {{ item.value }}"
|
|
state: present
|
|
validate: "sshd -t -f %s"
|
|
mode: '0644'
|
|
loop: "{{ ssh_config_options | dict2items }}"
|
|
notify: Restart SSH service
|