From e2e8648977413e5ec7312b1930b47fbfcbeebd5b Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Sat, 18 Nov 2023 02:00:37 -0500 Subject: [PATCH] add 'git' installation --- hello.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hello.yml b/hello.yml index a90c638..660cb68 100644 --- a/hello.yml +++ b/hello.yml @@ -8,3 +8,9 @@ - name: Say Hello world ansible.builtin.debug: msg: Hello world! + + + - name: Install Git + ansible.builtin.package: + name: git + state: present