refactor ♻️: Remove redundant variable from debug message
Some checks failed
ansible-lint / Ansible Lint (push) Failing after 10s

Refactored code by removing an unnecessary variable that was being used in a debug message, simplifying the logic and improving readability.
This commit is contained in:
2025-12-26 08:38:02 +01:00
parent 95f52e061b
commit a8d178ad6b

View File

@@ -55,7 +55,7 @@
- name: Display wol_enabled values for all items - name: Display wol_enabled values for all items
ansible.builtin.debug: ansible.builtin.debug:
msg: "{{ item }}: {{ item.stdout }}" msg: "{{ item.stdout }}"
loop: "{{ wol_enabled.results }}" loop: "{{ wol_enabled.results }}"