Ansible repo for digital ocean projects
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- - 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
|