Ansible repo for digital ocean projects
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

2 anni fa
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