From 646bed93c28c727ad8980a0f2a75611840607d13 Mon Sep 17 00:00:00 2001 From: Patrick Toal Date: Wed, 8 Aug 2018 21:04:24 -0400 Subject: [PATCH] Add Hello World --- files/hello.txt | 1 + hello.yml | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 files/hello.txt create mode 100644 hello.yml 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 +