fix 🐛: Fix typo in variable name

Corrected the typo 'wol_detected_bridge' to 'wol_detected_interface' to ensure accurate variable naming and functionality.
This commit is contained in:
2025-12-22 17:25:23 +01:00
parent 6de00262a6
commit ebc947ce9d

View File

@@ -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
}}