summaryrefslogtreecommitdiff
path: root/hello_world.yml
diff options
context:
space:
mode:
authoruvok cheetah2022-12-29 11:15:03 +0100
committeruvok cheetah2022-12-29 11:15:03 +0100
commit1c0951c3eba906c996e0aa8b59f5e04a4b1a1ce9 (patch)
tree7bab7438f5a68f8e35e9f6bb68873b741d43969b /hello_world.yml
Initial commit
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