Skip to content

Instantly share code, notes, and snippets.

@leehuwuj
Created December 17, 2024 23:37
Show Gist options
  • Save leehuwuj/1cd51f1506f2d200171a7487cff3af10 to your computer and use it in GitHub Desktop.
Save leehuwuj/1cd51f1506f2d200171a7487cff3af10 to your computer and use it in GitHub Desktop.
Ensure WoL (Wake-on-lan) always works!
[Unit]
Description=Enable Wake-on-LAN
After=network-online.target
Wants=network-online.target
[Service]
Type=oneshot
ExecStart=/bin/bash -c 'for i in {1..5}; do /sbin/ethtool -s <NETWORK_DRIVER> wol g && exit 0; sleep 2; done; exit 1' >> /var/log/wol.log 2>&1
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment