UA3F/ua3f.service
2023-12-03 22:07:59 +08:00

17 lines
195 B
Desktop File

#!/bin/sh /etc/rc.common
START=99
start(){
echo "ua3f is starting"
/root/ua3f &
}
stop(){
echo "ua3f is stopping"
killall ua3f
}
restart(){
killall ua3f
/root/ua3f &
}