23 lines
1.1 KiB
YAML
23 lines
1.1 KiB
YAML
---
|
|
# handlers file for chainetv
|
|
|
|
|
|
- name: Reload systemd
|
|
systemd:
|
|
daemon_reload: yes
|
|
become: yes
|
|
|
|
|
|
- name: restart supysonic service
|
|
systemd:
|
|
name: "gunicorn-{{supysonic_name}}.service" # not required. Name of the service. When using in a chroot environment you always need to specify the full name i.e. (crond.service).
|
|
state: restarted # not required. choices: reloaded;restarted;started;stopped. C(started)/C(stopped) are idempotent actions that will not run commands unless necessary. C(restarted) will always bounce the service. C(reloaded) will always reload.
|
|
enabled: true
|
|
become: yes
|
|
|
|
- name: restart daemon service
|
|
systemd:
|
|
name: "{{supysonic_name}}-daemon.service" # not required. Name of the service. When using in a chroot environment you always need to specify the full name i.e. (crond.service).
|
|
state: restarted # not required. choices: reloaded;restarted;started;stopped. C(started)/C(stopped) are idempotent actions that will not run commands unless necessary. C(restarted) will always bounce the service. C(reloaded) will always reload.
|
|
enabled: true
|
|
become: yes |