fixed: 修改start.sh脚本中if_success判断始终正确的bug && 增加对Clash订阅链接的可连接性判断
This commit is contained in:
parent
b6a0a69d44
commit
1dd8fcbcd5
|
@ -103,4 +103,4 @@ $ unset https_proxy
|
|||
|
||||
- 此项目不提供任何订阅信息,请自行准备Clash订阅地址。
|
||||
- 运行前请手动更改`start.sh`脚本中的URL变量值,否则无法正常运行。
|
||||
- 当前只在RHEL系列Linux系统中测试过,其他系列可能需要适当修改脚本。
|
||||
- 当前在RHEL系列和Debian系列Linux系统中测试过,其他系列可能需要适当修改脚本。
|
||||
|
|
50
start.sh
50
start.sh
|
@ -1,7 +1,32 @@
|
|||
#!/bin/bash
|
||||
|
||||
#加载系统函数库
|
||||
[ -f /etc/init.d/functions ] && source /etc/init.d/functions
|
||||
# 加载系统函数库(Only for RHEL Linux)
|
||||
# [ -f /etc/init.d/functions ] && source /etc/init.d/functions
|
||||
|
||||
# 自定义action函数,实现通用action功能
|
||||
success() {
|
||||
echo -en "\\033[60G[\\033[1;32m OK \\033[0;39m]\r"
|
||||
return 0
|
||||
}
|
||||
|
||||
failure() {
|
||||
local rc=$?
|
||||
echo -en "\\033[60G[\\033[1;31mFAILED\\033[0;39m]\r"
|
||||
[ -x /bin/plymouth ] && /bin/plymouth --details
|
||||
return $rc
|
||||
}
|
||||
|
||||
action() {
|
||||
local STRING rc
|
||||
|
||||
STRING=$1
|
||||
echo -n "$STRING "
|
||||
shift
|
||||
"$@" && success $"$STRING" || failure $"$STRING"
|
||||
rc=$?
|
||||
echo
|
||||
return $rc
|
||||
}
|
||||
|
||||
# 判断命令是否正常执行 函数
|
||||
if_success() {
|
||||
|
@ -18,16 +43,21 @@ Conf_Dir="$Server_Dir/conf"
|
|||
Temp_Dir="$Server_Dir/temp"
|
||||
Log_Dir="$Server_Dir/logs"
|
||||
URL='更改为你的clash订阅地址'
|
||||
# 检查url是否有效
|
||||
Text1="Clash订阅地址可访问!"
|
||||
Text2="Clash订阅地址不可访问!"
|
||||
curl -s --head $URL | head -n 1 | grep 'HTTP/1.[01] [23]..' > /dev/null
|
||||
if_success $Text1 $Text2
|
||||
|
||||
# 临时取消环境变量
|
||||
unset http_proxy
|
||||
unset https_proxy
|
||||
|
||||
# 拉取更新config.yml文件
|
||||
wget -q -O $Temp_Dir/clash.yaml $URL
|
||||
Text1="配置文件config.yaml下载成功!"
|
||||
Text2="配置文件config.yaml下载失败,退出启动!"
|
||||
if_success $Text1 $Text2
|
||||
Text3="配置文件config.yaml下载成功!"
|
||||
Text4="配置文件config.yaml下载失败,退出启动!"
|
||||
wget -q -O $Temp_Dir/clash.yaml $URL
|
||||
if_success $Text3 $Text4
|
||||
|
||||
# 取出代理相关配置
|
||||
sed -n '/^proxies:/,$p' $Temp_Dir/clash.yaml > $Temp_Dir/proxy.txt
|
||||
|
@ -38,11 +68,11 @@ cat $Temp_Dir/proxy.txt >> $Temp_Dir/config.yaml
|
|||
\cp $Temp_Dir/config.yaml $Conf_Dir/
|
||||
|
||||
# 启动Clash服务
|
||||
Text5="服务启动成功!"
|
||||
Text6="服务启动失败!"
|
||||
nohup $Server_Dir/clash-linux-amd64-v1.3.5 -d $Conf_Dir &> $Log_Dir/clash.log &
|
||||
Text3="服务启动成功!"
|
||||
Text4="服务启动失败!"
|
||||
if_success $Text3 $Text4
|
||||
if_success $Text5 $Text6
|
||||
|
||||
# 添加环境变量
|
||||
# 添加环境变量(root权限)
|
||||
echo -e "export http_proxy=http://127.0.0.1:7890\nexport https_proxy=http://127.0.0.1:7890" > /etc/profile.d/clash.sh
|
||||
echo -e "系统代理http_proxy/https_proxy设置成功,请在当前窗口执行以下命令加载环境变量:\n\nsource /etc/profile.d/clash.sh\n"
|
||||
|
|
Loading…
Reference in New Issue
Block a user