diff --git a/files/hello.txt b/files/hello.txt new file mode 100644 index 0000000..557db03 --- /dev/null +++ b/files/hello.txt @@ -0,0 +1 @@ +Hello World diff --git a/hello.yml b/hello.yml new file mode 100644 index 0000000..12d03b6 --- /dev/null +++ b/hello.yml @@ -0,0 +1,10 @@ +--- +- name: Install /tmp/hello.txt + hosts: all + + tasks: + - name: Install hello file + copy: + src: files/hello.txt + dest: /tmp/hello.txt +