arc-addons/wol/all/usr/bin/wol.sh
AuxXxilium 49991224b6 init: addons
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
2024-05-05 01:16:56 +02:00

12 lines
342 B
Bash
Executable File

#!/usr/bin/env bash
#
# Copyright (C) 2023 AuxXxilium <https://github.com/AuxXxilium> and Ing <https://github.com/wjz304>
#
# This is free software, licensed under the MIT License.
# See /LICENSE for more information.
#
for N in $(ls /sys/class/net/ 2>/dev/null | grep eth); do
echo "set ${N} wol g"
/usr/bin/ethtool -s "${N}" wol g
done