ansible/roles/sshd/handlers/main.yml

7 lines
76 B
YAML

---
- name: Restart SSHD
service:
name: sshd
state: restarted
...