31 lines
624 B
YAML
31 lines
624 B
YAML
---
|
|
- import_tasks: ../../common/handlers/main.yaml
|
|
|
|
- name: restart trollibox
|
|
systemd:
|
|
name: trollibox
|
|
state: restarted
|
|
daemon_reload: true
|
|
|
|
- name: rebuild librespot
|
|
command: /root/.cargo/bin/cargo build --release --features jackaudio-backend
|
|
args:
|
|
chdir: /opt/librespot
|
|
|
|
- name: restart librespot
|
|
systemd:
|
|
name: librespot
|
|
state: restarted
|
|
daemon_reload: true
|
|
|
|
- name: restart soundboard
|
|
systemd:
|
|
name: soundboard
|
|
state: restarted
|
|
daemon_reload: true
|
|
|
|
- name: restart mpd-volume-to-mqtt
|
|
systemd:
|
|
name: mpd-volume-to-mqtt
|
|
state: restarted
|
|
daemon_reload: true
|