From b7095cb5da0ce3381c2b2e4f8681df200ad1b16c Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Fri, 24 Apr 2026 01:01:42 +0200 Subject: Fix warning about loop var --- configure.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/configure.yml b/configure.yml index 173111ca..fc307868 100644 --- a/configure.yml +++ b/configure.yml @@ -8,7 +8,9 @@ tasks: - name: "Common" ansible.builtin.include_role: - name: "{{ item }}" + name: "{{ role }}" + loop_control: + loop_var: "role" loop: - "locales" - "timezone" @@ -56,7 +58,9 @@ - name: "Archlinux" when: ansible_distribution == 'Archlinux' ansible.builtin.include_role: - name: "{{ item }}" + name: "{{ role }}" + loop_control: + loop_var: "role" loop: - "yay" - "mpv" @@ -68,7 +72,9 @@ - name: "Ubuntu" when: ansible_distribution == 'Ubuntu' ansible.builtin.include_role: - name: "{{ item }}" + name: "{{ role }}" + loop_control: + loop_var: "role" loop: - "gnome" -- cgit v1.2.3