2022-03-16 15:00:11 +08:00
|
|
|
#!/bin/sh
|
|
|
|
# Copyright (C) Juewuy
|
|
|
|
|
|
|
|
clashdir=/data/clash
|
|
|
|
profile=/etc/profile
|
|
|
|
|
2023-01-16 17:35:06 +08:00
|
|
|
#检查clash运行状态
|
|
|
|
if [ -z $(pidof clash) ]; then
|
|
|
|
#初始化环境变量
|
|
|
|
sed -i "/alias clash/d" $profile
|
|
|
|
sed -i "/export clashdir/d" $profile
|
|
|
|
echo "alias clash=\"$clashdir/clash.sh\"" >>$profile
|
|
|
|
echo "export clashdir=\"$clashdir\"" >>$profile
|
|
|
|
#设置init.d服务并启动clash服务
|
|
|
|
ln -sf $clashdir/clashservice /etc/init.d/clash
|
|
|
|
chmod 755 /etc/init.d/clash
|
2022-03-16 15:00:11 +08:00
|
|
|
|
2023-01-16 17:35:06 +08:00
|
|
|
if [ ! -f $clashdir/.dis_startup ]; then
|
|
|
|
log_file=$(uci get system.@system[0].log_file)
|
|
|
|
while [ "$i" -lt 10 ]; do
|
|
|
|
sleep 5
|
|
|
|
[ -n "$(grep 'init complete' $log_file)" ] && i=10 || i=$((i + 1))
|
|
|
|
done
|
|
|
|
/etc/init.d/clash start
|
|
|
|
/etc/init.d/clash enable
|
|
|
|
fi
|
|
|
|
else
|
2023-01-20 11:14:59 +08:00
|
|
|
sleep 10
|
|
|
|
$clashdir/start.sh restart
|
2022-03-16 16:10:18 +08:00
|
|
|
fi
|