From 95f68ae9a7adcb56cdc9cc4367c40c0dbcd5f131 Mon Sep 17 00:00:00 2001 From: xavier Date: Tue, 26 Aug 2025 19:24:32 +0000 Subject: [PATCH] Add hello.yml --- hello.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 hello.yml diff --git a/hello.yml b/hello.yml new file mode 100644 index 0000000..93e62ae --- /dev/null +++ b/hello.yml @@ -0,0 +1,14 @@ +--- +- name: Simple Hello World playbook + hosts: all + gather_facts: no + + tasks: + - name: Echo Hello World + ansible.builtin.command: echo "Hello World" + + - name: Create hello.world file with content + ansible.builtin.copy: + dest: /tmp/hello.world + content: "Hello World\n" + mode: '0644'