mirror of
https://github.com/norohind/nebula-ansible.git
synced 2025-04-18 01:22:17 +03:00
16 lines
382 B
YAML
16 lines
382 B
YAML
---
|
|
# handlers file for nebula
|
|
- name: Reload nebula config (systemd)
|
|
when: service_manager == "systemd"
|
|
listen: nebula_reload
|
|
service:
|
|
name: "{{ nebula_service_name }}"
|
|
state: reloaded
|
|
|
|
- name: Reload nebula config (runit)
|
|
when: service_manager == "runit"
|
|
listen: nebula_reload
|
|
community.general.runit:
|
|
name: "{{ nebula_service_name }}"
|
|
state: reloaded
|