From 1e2bcabc7fbf35c1652d4ca3a53fc27f204824b5 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 21 Apr 2025 22:33:35 +0200 Subject: [PATCH] fix: value must be stored as a dictionary/hash --- tasks/verify_vars.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tasks/verify_vars.yml b/tasks/verify_vars.yml index d9471c2..81db529 100644 --- a/tasks/verify_vars.yml +++ b/tasks/verify_vars.yml @@ -5,5 +5,4 @@ that: - (item.user is defined and item.group is not defined) or (item.user is not defined and item.group is defined) - with_items: - - "{{ sudo_users_sudoers }}" + with_items: "{{ sudo_users_sudoers }}"