add music player playbook

This commit is contained in:
vincent 2020-06-04 22:21:42 +02:00
parent 88ed014b4b
commit 16fce4d846
2 changed files with 17 additions and 0 deletions

16
music-player.yml Normal file
View File

@ -0,0 +1,16 @@
- hosts: music-player
pre_tasks:
- name: install terminfo
pacman:
state: present # not required. choices: absent;latest;present. Desired state of the package.
name:
- termite-terminfo # not required. Name or list of names of the packages to install, upgrade, or remove.
become: yes
roles:
- user_config
- cronie
- hass-client-control
- mpd

View File

@ -1,5 +1,6 @@
--- ---
- import_playbook: global.yml - import_playbook: global.yml
- import_playbook: music-player.yml
- import_playbook: server.yml - import_playbook: server.yml
- import_playbook: workstation.yml - import_playbook: workstation.yml