ansible-role-nebula/handlers/main.yml
Louis Abel 1be345119f
Startup nebula ansible role
* Provide most options for nebula config
* Provide ability for future modifications to use other distros
* Provide information on usable variables in README
2024-04-18 18:30:15 -07:00

9 lines
159 B
YAML

---
- name: restart_nebula
ansible.builtin.systemd:
name: "{{ nebula_service_name }}"
daemon_reload: true
state: restarted
enabled: true
...