ansible-sshd/handlers/main.yml

43 lines
1.4 KiB
YAML
Raw Normal View History

2014-12-18 23:12:51 +01:00
---
2018-09-08 10:13:51 +02:00
2017-09-06 16:20:00 +02:00
- name: Reload the SSH service
2022-06-03 12:22:17 +02:00
ansible.builtin.service:
2014-12-18 23:12:51 +01:00
name: "{{ sshd_service }}"
state: reloaded
2018-09-08 10:13:51 +02:00
when:
2019-05-23 21:38:31 +02:00
- sshd_allow_reload|bool
- ansible_facts['virtualization_type'] | default(None) not in __sshd_skip_virt_env
- ansible_connection != 'chroot'
- ansible_facts['os_family'] != 'AIX'
- ansible_facts['os_family'] != 'OpenWrt'
2017-09-06 16:20:00 +02:00
listen: reload_sshd
# sshd on AIX cannot be 'reloaded', it must be Stopped+Started.
# It's dangerous to do this in two tasks.. you're stopping SSH and then trying to SSH back in to start it.
# Instead, use a dirty shell script:
# https://www.ibm.com/developerworks/community/blogs/brian/entry/scripting_the_stop_and_restart_of_src_controlled_processes_on_aix6
- name: Reload sshd Service (AIX)
2022-06-03 12:22:17 +02:00
ansible.builtin.shell: |
set -eu
if set -o | grep pipefail 2>&1 /dev/null ; then
set -o pipefail
fi
stopsrc -s sshd
2019-11-06 20:36:36 +01:00
until $(lssrc -s sshd | grep -q inoperative); do sleep 1; done
startsrc -s sshd
listen: reload_sshd
changed_when: false
when:
- sshd_allow_reload|bool
- ansible_facts['os_family'] == 'AIX'
2022-09-14 20:18:37 +02:00
# sshd on OpenWrt does not support reloading a service, it has to be restarted instead
- name: Reload the SSH service (OpenWrt)
ansible.builtin.service:
name: "{{ sshd_service }}"
state: restarted
when:
- sshd_allow_reload|bool
- ansible_facts['os_family'] == 'OpenWrt'
2022-09-14 20:18:37 +02:00
listen: reload_sshd