Test2/abc.yml

14 lines
251 B
YAML
Raw Normal View History

2021-06-09 17:47:31 +02:00
---
- name: Moin, Moin Leude!
hosts: all
tasks:
- name: copy file
copy:
src: test.txt
dest: /tmp/test_file_2_{{ ansible_hostname }}.txt
mode: "0644"
owner: pi
group: users
backup: true
...