fix(脚本): 修改更新脚本时的路径
parent
3171b589fb
commit
30cfeb75f7
|
@ -41,7 +41,7 @@
|
||||||
- 支持个性化安装,VLESS+TCP为必选,其余为可选项。
|
- 支持个性化安装,VLESS+TCP为必选,其余为可选项。
|
||||||
- 脚本自动检查升级
|
- 脚本自动检查升级
|
||||||
- 自动更新TLS证书
|
- 自动更新TLS证书
|
||||||
- 支持快捷方式启动,安装完毕后,shell输入[vas]即可打开脚本,脚本路径[/etc/v2ray-agent/install.sh]
|
- 支持快捷方式启动,安装完毕后,shell输入[vas]即可打开脚本,脚本执行路径[/etc/v2ray-agent/install.sh]
|
||||||
|
|
||||||
|
|
||||||
## 注意事项
|
## 注意事项
|
||||||
|
|
|
@ -777,7 +777,13 @@ updateV2RayAgent(){
|
||||||
local currentTime=`date +%s`
|
local currentTime=`date +%s`
|
||||||
echo "upgrade|${currentTime}" > /etc/v2ray-agent/upgradeStatus
|
echo "upgrade|${currentTime}" > /etc/v2ray-agent/upgradeStatus
|
||||||
echoContent skyBlue "\n进度 $1/${totalProgress} : 更新v2ray-agent脚本"
|
echoContent skyBlue "\n进度 $1/${totalProgress} : 更新v2ray-agent脚本"
|
||||||
wget -N --no-check-certificate "https://raw.githubusercontent.com/mack-a/v2ray-agent/master/install.sh" && chmod +x install.sh && ./install.sh
|
if [[ -d "/etc/v2ray-agent" ]]
|
||||||
|
then
|
||||||
|
wget -P /etc/v2ray-agent/ -N --no-check-certificate "https://raw.githubusercontent.com/mack-a/v2ray-agent/master/install.sh" && chmod +x /etc/v2ray-agent/install.sh && /etc/v2ray-agent/install.sh
|
||||||
|
else
|
||||||
|
wget -N --no-check-certificate "https://raw.githubusercontent.com/mack-a/v2ray-agent/master/install.sh" && chmod +x install.sh && ./install.sh
|
||||||
|
fi
|
||||||
|
|
||||||
}
|
}
|
||||||
# 验证整个服务是否可用
|
# 验证整个服务是否可用
|
||||||
checkGFWStatue(){
|
checkGFWStatue(){
|
||||||
|
@ -2168,6 +2174,7 @@ aliasInstall(){
|
||||||
else
|
else
|
||||||
echo noAliasInstall
|
echo noAliasInstall
|
||||||
fi
|
fi
|
||||||
|
echoContent green " ---> 安装完毕,可执行[vas]重新回到打开脚本"
|
||||||
}
|
}
|
||||||
# 默认安装
|
# 默认安装
|
||||||
defaultInstall(){
|
defaultInstall(){
|
||||||
|
|
Loading…
Reference in New Issue