Ansible repo for digital ocean projects
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- - hosts: all
- gather_facts: false
- vars:
- count: 5
- tasks:
-
- - name: Install mpdf on hosts
- apt:
- name: mpd
- state: present
-
- - name: setup config on hosts
- template:
- src: mpdf.conf.j2
- dest: /etc/mpdf{{ item ]].conf
- owner: root
- group: root
- notify:
- - restart mpd
- loop: "{{ range(1,count|int + 1) }}"
|