mirror of
https://github.com/juewuy/ShellCrash.git
synced 2024-11-16 11:42:18 +08:00
d9bff51afc
~优化了定时任务实现方式,适配更多设备 ~优化了配置文件修饰方式 ~优化了启动和关闭进程时的检测,修复错误 ~优化了非root用户体验 ~优化脚本结构
33 lines
625 B
Bash
33 lines
625 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=92
|
|
|
|
SERVICE_DAEMONIZE=1
|
|
SERVICE_WRITE_PID=1
|
|
USE_PROCD=1
|
|
DIR=$(cat /etc/profile|grep clashdir|awk -F "\"" '{print $2}')
|
|
|
|
start_service() {
|
|
#使用procd创建clash后台进程
|
|
procd_open_instance
|
|
procd_set_param respawn
|
|
procd_set_param stderr 1
|
|
procd_set_param stdout 1
|
|
procd_set_param command $DIR/clash -d $DIR
|
|
procd_close_instance
|
|
#其他设置
|
|
$DIR/start.sh afstart
|
|
}
|
|
|
|
start() {
|
|
if [ -z "$(pidof procd)" ];then
|
|
#创建后台进程
|
|
service_start $DIR/clash -d $DIR
|
|
#其他设置
|
|
$DIR/start.sh afstart
|
|
#设置守护进程
|
|
$DIR/start.sh deamon
|
|
else
|
|
start_service
|
|
fi
|
|
} |