From 431b7dfacce5e170dfb09dca297f1fb1664aac73 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Fri, 27 Oct 2023 17:40:50 -0500 Subject: [PATCH] facts: Do not collect facts in first play The first play in the `facts.yml` playbook contains a single task: clear the existing fact cache. It makes *no* sense to gather facts for this play. --- facts.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/facts.yml b/facts.yml index e56e214..23f9713 100644 --- a/facts.yml +++ b/facts.yml @@ -1,4 +1,5 @@ - hosts: all + gather_facts: false tasks: - name: clear facts meta: clear_facts