31 lines
682 B
YAML
31 lines
682 B
YAML
---
|
|
- name: Install dependencies
|
|
ansible.builtin.apt:
|
|
name: libjack-jackd2-dev
|
|
state: present
|
|
|
|
- name: Clone librespot source
|
|
ansible.builtin.git:
|
|
repo: https://github.com/librespot-org/librespot.git
|
|
version: dev
|
|
dest: /opt/librespot
|
|
accept_hostkey: yes
|
|
notify:
|
|
- Rebuild librespot
|
|
- Restart librespot
|
|
|
|
- name: Install service file
|
|
ansible.builtin.template:
|
|
src: librespot.service
|
|
dest: /etc/systemd/system/librespot.service
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
notify: Restart librespot
|
|
|
|
- name: Enable Librespot
|
|
ansible.builtin.systemd:
|
|
name: librespot
|
|
state: started
|
|
enabled: true
|
|
daemon_reload: true
|