17 lines
478 B
YAML
17 lines
478 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
|
|
loop: "{{ sshd_options | dict2items }}"
|
|
register: sshd_config
|
|
become: true
|
|
|
|
- name: Ensure SSH daemon configuration is consistent
|
|
ansible.builtin.command: sshd -t -f /etc/ssh/sshd_config
|
|
changed_when: sshd_config.changed
|
|
notify: Restart SSH Service
|
|
become: true
|