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.

17 satır
311 B

  1. - hosts: all
  2. gather_facts: true
  3. vars:
  4. tasks:
  5. - name: Install mpdb 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. owner: root
  14. group: root
  15. notify:
  16. - restart mpd