Use handler

This commit is contained in:
Santiago Lo Coco 2024-04-12 21:41:11 +00:00
parent 16a0687e10
commit 5e3e7cae97
2 changed files with 5 additions and 14 deletions

View File

@ -1 +1,5 @@
---
---
- name: Restart SSH service
ansible.builtin.service:
name: sshd
state: restarted

View File

@ -7,17 +7,4 @@
state: present
validate: "sshd -t -f %s"
loop: "{{ sshd_options | dict2items }}"
register: sshd_config
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