initial commit

This commit is contained in:
Jens Heinitz
2021-06-09 17:47:31 +02:00
commit dc72567779
8 changed files with 95 additions and 0 deletions

13
abc.yml Normal file
View File

@@ -0,0 +1,13 @@
---
- 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
...