Update ssh_config test
This commit is contained in:
parent
59dd458289
commit
77ba1c7846
|
@ -11,3 +11,20 @@
|
|||
|
||||
roles:
|
||||
- role: slococo.playground.ssh_config
|
||||
|
||||
tasks:
|
||||
- name: Check SSH daemon configuration
|
||||
ansible.builtin.lineinfile:
|
||||
path: /etc/ssh/sshd_config
|
||||
regexp: "^{{ item.key }}"
|
||||
line: "{{ item.key }} {{ item.value }}"
|
||||
state: present
|
||||
mode: '0644'
|
||||
loop: "{{ ssh_config_options | dict2items }}"
|
||||
check_mode: true
|
||||
register: ssh_config_result
|
||||
|
||||
- name: Fail if any change occurred
|
||||
ansible.builtin.fail:
|
||||
msg: "A change occurred in SSH daemon configuration."
|
||||
when: ssh_config_result.changed and not ansible_check_mode
|
||||
|
|
Loading…
Reference in New Issue