summaryrefslogtreecommitdiff
path: root/hello_world.yml
diff options
context:
space:
mode:
Diffstat (limited to 'hello_world.yml')
-rw-r--r--hello_world.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/hello_world.yml b/hello_world.yml
new file mode 100644
index 0000000..67b340d
--- /dev/null
+++ b/hello_world.yml
@@ -0,0 +1,10 @@
+# To run this, name this file hello_world.yml and run the following in the same directory
+# ansible-playbook hello_world.yml -i 'local,' --connection=local
+
+- name: hello world example
+ hosts: all
+ tasks:
+ - name: Create a directory
+ file:
+ path=hello_world
+ state=directory