Automated changes from linter ;P

This commit is contained in:
Mark Janssen 2024-07-11 20:47:52 +02:00
parent 44b73a216f
commit f7f04e7a41
Signed by: foobar
GPG key ID: D8674D8FC4F69BD2
65 changed files with 392 additions and 324 deletions

View file

@ -1,11 +1,11 @@
---
- name: Install dependencies
apt:
ansible.builtin.apt:
name: libjack-jackd2-dev
state: present
- name: Clone librespot source
git:
ansible.builtin.git:
repo: https://github.com/librespot-org/librespot.git
version: dev
dest: /opt/librespot
@ -15,7 +15,7 @@
- restart librespot
- name: Install service file
template:
ansible.builtin.template:
src: librespot.service
dest: /etc/systemd/system/librespot.service
owner: root
@ -24,7 +24,7 @@
notify: restart librespot
- name: Enable Librespot
systemd:
ansible.builtin.systemd:
name: librespot
state: started
enabled: true