mirror of
https://github.com/SunBK201/UA3F.git
synced 2025-12-16 08:44:29 +00:00
17 lines
188 B
Desktop File
17 lines
188 B
Desktop File
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
start(){
|
|
/root/ua3f &
|
|
echo "ua3f is start"
|
|
}
|
|
|
|
stop(){
|
|
killall ua3f
|
|
echo "ua3f is stop"
|
|
}
|
|
|
|
restart(){
|
|
killall ua3f
|
|
/root/ua3f &
|
|
} |