sync/roles/secure/handlers/main.yml

12 lines
191 B
YAML
Raw Normal View History

2018-04-12 12:39:55 -04:00
- name: Check sshd
shell:
cmd: sshd -t
become: yes
listen: "restart_sshd"
- name: Restart sshd
service:
name: sshd
state: restarted
become: yes
listen: "restart_sshd"