summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'tasks')
-rw-r--r--tasks/main.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/tasks/main.yml b/tasks/main.yml
new file mode 100644
index 0000000..d073391
--- /dev/null
+++ b/tasks/main.yml
@@ -0,0 +1,11 @@
+---
+# tasks file for helloworld
+
+- name: echo 'hello world'
+ command: echo "Hello {{ world }}"
+ register: result
+
+- name: print message
+ debug:
+ msg: "{{ result.stdout_lines }}"
+