ansible_playbooks/roles/ssh_settings/handlers/main.yml
2026-02-24 11:30:35 +03:00

7 lines
98 B
YAML
Executable file

---
- name: Restart SSH
service:
name: "ssh"
state: restarted
ignore_errors: true
...