From 5fbab51e569d41873d27e909b8509f00db41d295 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Tue, 19 May 2026 09:19:05 +0200 Subject: [PATCH] chore: migrate bare ansible_* facts to ansible_facts[] syntax --- tasks/install.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/install.yaml b/tasks/install.yaml index a3e29ca..320ad50 100644 --- a/tasks/install.yaml +++ b/tasks/install.yaml @@ -7,4 +7,4 @@ state: "present" update_cache: "true" cache_valid_time: "120" - when: 'ansible_os_family == "Debian"' + when: 'ansible_facts["os_family"] == "Debian"'