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.

mpdf.yaml 272 B

2 lat temu
1234567891011121314
  1. - hosts: all
  2. gather_facts: false
  3. vars:
  4. tasks:
  5. - name: Install mpd on hosts
  6. apt:
  7. name: mpd
  8. state: present
  9. - name: setup config on hosts
  10. template:
  11. src: mpdf.conf.j2
  12. dest: /etc/mpd.conf
  13. notify:
  14. - restart mpd