Ansible repo for digital ocean projects
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

22 строки
378 B

  1. - hosts: all
  2. gather_facts: false
  3. vars:
  4. count: 5
  5. tasks:
  6. - name: Install mpdf on hosts
  7. apt:
  8. name: mpd
  9. state: present
  10. - name: setup config on hosts
  11. template:
  12. src: mpdf.conf.j2
  13. dest: /etc/mpdf{{ item ]].conf
  14. owner: root
  15. group: root
  16. notify:
  17. - restart mpd
  18. loop: "{{ range(1,count|int + 1) }}"