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