From 10468afe36a0fc534bc889c4bf6aa1f28588f66b Mon Sep 17 00:00:00 2001 From: jerome Date: Fri, 5 May 2023 17:07:48 +0200 Subject: commit initial --- tasks/main.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tasks/main.yml (limited to 'tasks/main.yml') 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 }}" + -- cgit v1.2.3