scripts/turn-on-wol
joachimschmidt557 150646b4c8
add turn-on-wol script
This script periodically turns on Wake-On-Lan with a magic packet
2023-03-25 23:35:26 +01:00

6 lines
81 B
Bash
Executable file

#!/usr/bin/env bash
while true ; do
ethtool -s eno1 wol g
sleep 10
done