58 lines
1.3 KiB
YAML
58 lines
1.3 KiB
YAML
---
|
|
- name: Install MPD
|
|
ansible.builtin.apt:
|
|
name:
|
|
- jackd
|
|
- mpd
|
|
- python3-mpd
|
|
- python3-serial
|
|
state: present
|
|
|
|
- name: Install mpd-volume-to-mqtt script
|
|
ansible.builtin.template:
|
|
src: mpd-volume-to-mqtt.sh
|
|
dest: /opt/mpd-volume-to-mqtt.sh
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
notify: restart mpd-volume-to-mqtt
|
|
|
|
- name: Install mpd-volume-to-mqtt service
|
|
ansible.builtin.template:
|
|
src: mpd-volume-to-mqtt.service
|
|
dest: /etc/systemd/system/mpd-volume-to-mqtt.service
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
notify: restart mpd-volume-to-mqtt
|
|
|
|
- name: Enable mpd-volume-to-mqtt
|
|
ansible.builtin.systemd:
|
|
name: mpd-volume-to-mqtt
|
|
state: started
|
|
enabled: true
|
|
daemon_reload: true
|
|
|
|
- name: Clone skipbutton source
|
|
ansible.builtin.git:
|
|
repo: https://github.com/bitlair/skipbutton.git
|
|
version: master
|
|
dest: /opt/skipbutton
|
|
accept_hostkey: yes
|
|
notify: restart skipbutton
|
|
|
|
- name: Install skipbutton service
|
|
ansible.builtin.template:
|
|
src: skipbutton.service
|
|
dest: /etc/systemd/system/skipbutton.service
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
notify: restart skipbutton
|
|
|
|
- name: Enable skipbutton
|
|
ansible.builtin.systemd:
|
|
name: skipbutton
|
|
state: started
|
|
enabled: true
|
|
daemon_reload: true
|