This commit introduces persistent Wake-on-LAN support for Proxmox VE via Ansible. It includes YAML configuration options for the interface, verification, and systemd service management, ensuring reliable functionality after Ansible role execution. The changes also address ignoring outputs and temporary files for a cleaner setup.
10 lines
169 B
YAML
10 lines
169 B
YAML
---
|
|
- name: Reload systemd
|
|
command: systemctl daemon-reexec
|
|
|
|
- name: Enable and start WOL service
|
|
systemd:
|
|
name: wol.service
|
|
enabled: yes
|
|
state: started
|