Ansible repo for digital ocean projects
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- - hosts: all
- gather_facts: false
- vars:
- tasks:
- - name: Install mpdf 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
|