Ansible repo for digital ocean projects
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- - hosts: all
- gather_facts: true
- 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
|