Ansible repo for digital ocean projects
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- - 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
|