mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 09:10:30 +08:00
17 lines
241 B
Bash
Executable File
17 lines
241 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo $ATX
|
|
case $ATX in
|
|
GPIO)
|
|
CUSTOMATX=gpio
|
|
;;
|
|
USBRELAY_HID)
|
|
CUSTOMATX=usbrelay_hid
|
|
;;
|
|
*)
|
|
echo "No thing."
|
|
exit -1
|
|
esac
|
|
|
|
#$1 option: short long reset
|
|
exec /etc/kvmd/custom_atx/$CUSTOMATX.sh $1 |