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

15
test_file.yml Normal file
View File

@@ -0,0 +1,15 @@
---
- name: Moin Hello World - from git
hosts: all
tasks:
- name: Moin Hello Message
debug:
msg: "Moin! Hello World!"
- name: Copy File
copy:
src: test.txt
dest: /tmp/test_{{ ansible_hostname }}.txt
mode: "0644"
owner: pi
group: users
...