Ansible repo for digital ocean projects
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

2 年前
2 年前
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) }}"