ansible-sshd/handlers/main.yml

7 lines
156 B
YAML
Raw Normal View History

2014-12-18 23:12:51 +01:00
---
2015-01-13 14:26:52 +01:00
- name: reload_sshd
2014-12-18 23:12:51 +01:00
service:
name: "{{ sshd_service }}"
state: reloaded
2017-05-04 15:31:26 +02:00
when: sshd_allow_reload and ansible_virtualization_type != 'docker'