mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-13 01:30:31 +08:00
17 lines
299 B
Bash
Executable File
17 lines
299 B
Bash
Executable File
#!/bin/bash
|
|
case $1 in
|
|
short)
|
|
gpioset -m time -s 1 SHUTDOWNPIN=0
|
|
gpioset SHUTDOWNPIN=1
|
|
;;
|
|
long)
|
|
gpioset -m time -s 5 SHUTDOWNPIN=0
|
|
gpioset SHUTDOWNPIN=1
|
|
;;
|
|
reset)
|
|
gpioset -m time -s 1 REBOOTPIN=0
|
|
gpioset REBOOTPIN=1
|
|
;;
|
|
*)
|
|
echo "No thing."
|
|
esac |