From b997726f4f420f618e1882bbd714998ad2019212 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Thu, 30 Jun 2022 10:50:53 +0000 Subject: [PATCH] fix: access undefined variable --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index c977c4c..9620cb8 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -28,4 +28,4 @@ nopassword: "{{ item.value.without_password | default(False) }}" commands: "{{ items.value.command | join(',') if items.value.command is defined and items.value.command | length > 0 else 'ALL' }}" when: "item.value | length > 0" - with_dict: "{{ sudo_users }}" \ No newline at end of file + with_dict: "{{ sudo_users_sudoers }}" \ No newline at end of file