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,6 +1,6 @@
---
- name: Install MPD
apt:
ansible.builtin.apt:
name:
- jackd
- mpd
@ -9,7 +9,7 @@
state: present
- name: Install mpd-volume-to-mqtt script
template:
ansible.builtin.template:
src: mpd-volume-to-mqtt.sh
dest: /opt/mpd-volume-to-mqtt.sh
owner: root
@ -18,7 +18,7 @@
notify: restart mpd-volume-to-mqtt
- name: Install mpd-volume-to-mqtt service
template:
ansible.builtin.template:
src: mpd-volume-to-mqtt.service
dest: /etc/systemd/system/mpd-volume-to-mqtt.service
owner: root
@ -27,14 +27,14 @@
notify: restart mpd-volume-to-mqtt
- name: Enable mpd-volume-to-mqtt
systemd:
ansible.builtin.systemd:
name: mpd-volume-to-mqtt
state: started
enabled: true
daemon_reload: true
- name: Clone skipbutton source
git:
ansible.builtin.git:
repo: https://github.com/bitlair/skipbutton.git
version: master
dest: /opt/skipbutton
@ -42,7 +42,7 @@
notify: restart skipbutton
- name: Install skipbutton service
template:
ansible.builtin.template:
src: skipbutton.service
dest: /etc/systemd/system/skipbutton.service
owner: root
@ -51,7 +51,7 @@
notify: restart skipbutton
- name: Enable skipbutton
systemd:
ansible.builtin.systemd:
name: skipbutton
state: started
enabled: true