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 378 B

2 lat temu
2 lat temu
123456789101112131415161718192021
  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) }}"