mirror of
https://github.com/SunBK201/UA3F.git
synced 2025-12-16 16:57:08 +00:00
17 lines
195 B
Desktop File
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 &
|
|
} |