diff --git a/files/test3a.txt b/files/test3a.txt new file mode 100644 index 0000000..462f731 --- /dev/null +++ b/files/test3a.txt @@ -0,0 +1,11 @@ +This is a Testfile from Git + +< Moin > + ------ + \ ^__^ + \ (oo)\_______ + (__)\ )\/\ + ||----w | + || || + + diff --git a/xyz1.yml b/xyz1.yml new file mode 100644 index 0000000..0173f86 --- /dev/null +++ b/xyz1.yml @@ -0,0 +1,12 @@ +--- +- name: Moin, Moin Leude! + hosts: all + tasks: + - name: copy file + copy: + src: test3a.txt + dest: /tmp/test_file_3a_{{ ansible_hostname }}.txt + mode: "0644" + owner: pi + group: users +...