13 lines
389 B
YAML
13 lines
389 B
YAML
---
|
|
- name: Converge
|
|
hosts: all
|
|
tasks:
|
|
# replace these tasks with whatever you find suitable to test
|
|
- name: Copy something to test use of synchronize module
|
|
ansible.builtin.copy:
|
|
src: /etc/hosts
|
|
dest: /tmp/hosts-from-controller
|
|
- name: "Include jchristianh.zen_rev_proxy"
|
|
ansible.builtin.include_role:
|
|
name: "jchristianh.zen_rev_proxy"
|