From b797877b321c46e0c1ef5e802c7a99f7551f8592 Mon Sep 17 00:00:00 2001 From: Jose Date: Wed, 24 Dec 2025 09:50:39 +0100 Subject: [PATCH] =?UTF-8?q?feat=20=E2=9C=A8:=20Add=20task=20to=20display?= =?UTF-8?q?=20WOL=20interfaces?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This feature introduces a new task that allows users to view Wake-On-LAN (WOL) interfaces, enhancing the network management capabilities of the system. --- tasks/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tasks/main.yml b/tasks/main.yml index ae0ca4d..13bd15f 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -26,6 +26,11 @@ ansible.builtin.set_fact: en_interfaces: "{{ ansible_facts.interfaces | select('match', '^en') | list }}" +- name: Display WOL interface + ansible.builtin.debug: + msg: > + {{ en_interfaces }} + # # ============================================================ # # Normalize and validate configuration # # ============================================================