From 62766cf1fd721d278e95821e05e6b41f7888eed5 Mon Sep 17 00:00:00 2001 From: boom2 Date: Tue, 21 Nov 2023 14:11:56 -0500 Subject: initial commit --- ansible-practice/01-playbook-hello.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ansible-practice/01-playbook-hello.yml (limited to 'ansible-practice/01-playbook-hello.yml') diff --git a/ansible-practice/01-playbook-hello.yml b/ansible-practice/01-playbook-hello.yml new file mode 100644 index 0000000..d668dea --- /dev/null +++ b/ansible-practice/01-playbook-hello.yml @@ -0,0 +1,11 @@ +# hello world +# https://www.digitalocean.com/community/tutorial-series/how-to-write-ansible-playbooks +--- + +- name: "01 - Playing with Ansible - hello world" + hosts: all + tasks: + - name: Print message + debug: + msg: Hello Ansible World +... \ No newline at end of file -- cgit v1.2.3-54-g00ecf