|
12345678910111213141516 |
- - hosts: all
- gather_facts: false
- vars:
- tasks:
- - name: Install mpdb on hosts
- apt:
- name: mpd
- state: present
- - name: setup config on hosts
- template:
- src: mpdf.conf.j2
- dest: /etc/mpd.conf
- owner: root
- group: root
- notify:
- - restart mpd
|