mirror of
https://github.com/juewuy/ShellCrash.git
synced 2024-11-16 03:32:34 +08:00
1991ef3489
~同步最新Meta内核 ~同步最新Pre内核,支持域名嗅探 ~增加启动管理菜单 ~增加延时启动功能 ~移除流媒体预解析功能,请用7-4域名嗅探 ~域名嗅探功能默认改为为启用状态(限Pre或Meta生效) ~增加小闪存模式自定义目录功能 ~内置DNS改为优先读取config.yaml ~新手引导简化调整 ~修复正式版无法安装的问题
25 lines
645 B
Bash
25 lines
645 B
Bash
#!/bin/sh
|
|
# Copyright (C) Juewuy
|
|
|
|
clashdir=/data/clash
|
|
profile=/etc/profile
|
|
|
|
#h初始化环境变量
|
|
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
|
|
|
|
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
|