From c9703e6d0bee40e5426fc5fa234fa9f86fb048f2 Mon Sep 17 00:00:00 2001 From: Matthew McKinnon Date: Mon, 22 Sep 2025 20:13:56 +1000 Subject: [PATCH] chore: set base_install tag --- main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/main.yml b/main.yml index e840d91..f99ec17 100644 --- a/main.yml +++ b/main.yml @@ -1,4 +1,12 @@ --- +- hosts: all + name: Configure all servers + tasks: + - name: Gather facts (always, even with tags) + ansible.builtin.setup: + tags: always + + - name: Prepare all servers hosts: all become: true