From 4205a8fc8b45ea069067feaa50129a553fa729d3 Mon Sep 17 00:00:00 2001 From: Jose Date: Fri, 26 Dec 2025 07:46:40 +0100 Subject: [PATCH] =?UTF-8?q?fix=20=F0=9F=90=9B:=20Fix=20typo=20in=20variabl?= =?UTF-8?q?e=20names=20for=20wol=5Fstatus=20results?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Corrected typos in variable names to ensure accurate handling of `wol_status` results. --- tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index d2fd7ca..a29b5f4 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -59,7 +59,7 @@ - name: Extract Supports Wake-on value set_fact: - supports_wake_on: "{{ wol_status.stdout | regex_search('Supports Wake-on:\\s*(\\S+)', '\\1') }}" + supports_wake_on: "{{ wol_status.rsults | regex_search('Supports Wake-on:\\s*(\\S+)', '\\1') }}" - name: Show Supports Wake-on value debug: @@ -68,7 +68,7 @@ - name: Extract Wake-on value set_fact: - wake_on: "{{ wol_status.stdout | regex_search('Wake-on:\\s*(\\S+)', '\\1') }}" + wake_on: "{{ wol_status.results | regex_search('Wake-on:\\s*(\\S+)', '\\1') }}" - name: Show Wake-on value debug: