From ebc947ce9d66939b9380c38efa827e2a48f42f67 Mon Sep 17 00:00:00 2001 From: Jose Date: Mon, 22 Dec 2025 17:25:23 +0100 Subject: [PATCH] =?UTF-8?q?fix=20=F0=9F=90=9B:=20Fix=20typo=20in=20variabl?= =?UTF-8?q?e=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Corrected the typo 'wol_detected_bridge' to 'wol_detected_interface' to ensure accurate variable naming and functionality. --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 7efa64a..1b30dc3 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -55,7 +55,7 @@ ansible.builtin.set_fact: wol_bridge_phys: >- {{ - ansible_facts[wol_detected_bridge].interfaces + ansible_facts[wol_detected_interface].interfaces | select('match', '^(e|en)') | list }}