Use handler
This commit is contained in:
parent
16a0687e10
commit
5e3e7cae97
|
@ -1 +1,5 @@
|
||||||
---
|
---
|
||||||
|
- name: Restart SSH service
|
||||||
|
ansible.builtin.service:
|
||||||
|
name: sshd
|
||||||
|
state: restarted
|
|
@ -7,17 +7,4 @@
|
||||||
state: present
|
state: present
|
||||||
validate: "sshd -t -f %s"
|
validate: "sshd -t -f %s"
|
||||||
loop: "{{ sshd_options | dict2items }}"
|
loop: "{{ sshd_options | dict2items }}"
|
||||||
register: sshd_config
|
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
- name: Restart SSH service
|
|
||||||
ansible.builtin.service:
|
|
||||||
name: sshd
|
|
||||||
state: restarted
|
|
||||||
when: sshd_config.changed
|
|
||||||
|
|
||||||
# - 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
|
|
||||||
|
|
Loading…
Reference in New Issue