From 64529185bd3633fcf97f55ef6b343d20d2b519b7 Mon Sep 17 00:00:00 2001 From: asmallco Date: Mon, 6 Jul 2026 18:15:02 -0900 Subject: [PATCH] Add local.yaml --- local.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 local.yaml diff --git a/local.yaml b/local.yaml new file mode 100644 index 0000000..3d973f2 --- /dev/null +++ b/local.yaml @@ -0,0 +1,11 @@ +--- +- name: System Configuration via Ansible Pull + hosts: localhost + connection: local + become: true + + tasks: + - name: Ensure git is installed + ansible.builtin.package: + name: git + state: present \ No newline at end of file