mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-05 19:33:30 +01:00
11 lines
254 B
YAML
11 lines
254 B
YAML
---
|
|
|
|
- name: Reload the SSH service
|
|
service:
|
|
name: "{{ sshd_service }}"
|
|
state: reloaded
|
|
when:
|
|
- sshd_allow_reload|bool
|
|
- ansible_virtualization_type|default(None) != 'docker'
|
|
- ansible_connection != 'chroot'
|
|
listen: reload_sshd
|