ansible/playbooks/xyz.yml

13 lines
231 B
YAML
Raw Permalink Normal View History

---
- name: Moin, Moin Leude!
hosts: all
tasks:
- name: copy file
copy:
src: test3.txt
dest: /tmp/test_file_3_{{ ansible_hostname }}.txt
mode: "0644"
owner: pi
group: users
...