From 4e087155d87619d67ca4bddc594999b723ee99a2 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Sun, 27 Jul 2025 13:23:15 -0500 Subject: [PATCH] bootstrap: use 'truthy', not bool --- roles/bootstrap/tasks/dnf.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/bootstrap/tasks/dnf.yml b/roles/bootstrap/tasks/dnf.yml index 3c9744c..acaaeae 100644 --- a/roles/bootstrap/tasks/dnf.yml +++ b/roles/bootstrap/tasks/dnf.yml @@ -35,4 +35,4 @@ enabled: true when: - auto_update is defined - - auto_update | bool + - auto_update is truthy(convert_bool=True)