From 9c3cf0dbccbf98a11051e47cbc41f34729449fe3 Mon Sep 17 00:00:00 2001 From: Jose Date: Fri, 26 Dec 2025 09:55:17 +0100 Subject: [PATCH] =?UTF-8?q?refactor=20=E2=99=BB=EF=B8=8F:=20Rename=20task?= =?UTF-8?q?=20from=20'Enable=20Wake-on-LAN=20(magic=20packet)'=20to=20'Set?= =?UTF-8?q?=20Wake-on-LAN'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refactored the task name to be more concise and descriptive, improving clarity and consistency in terminology. --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 620db93..33d319d 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -56,7 +56,7 @@ loop: "{{ en_interfaces }}" when: en_interfaces | length > 0 -- name: Enable Wake-on-LAN (magic packet) when supported +- name: Set Wake-on-LAN ansible.builtin.command: "ethtool -s {{ item.0 }} wol {{ wol_mode }}" loop: "{{ en_interfaces | zip(wol_enabled.results, wol_supported.results) | list }}" loop_control: