feat(脚本): 修改提示语、修改运行状态查询条件
parent
edbae04abc
commit
8afe7a2290
|
@ -28,7 +28,7 @@
|
|||
* * *
|
||||
# 一键脚本
|
||||
## 全自动WebSocket+TLS+CDN+智能优选Cloudflare IP一键脚本
|
||||
- 目前已在GCP上测试Centos6【不稳定】、Centos7、Centos8、Debian9、Debian10通过,不开启云朵则为直连。
|
||||
- 目前已在GCP上测试Centos[6【不稳定】、7、8]、Debian[9、10]、Ubuntu[16、18、19、20]通过,不开启云朵则为直连。
|
||||
- 这里添加了默认的智能解析自选CDN IP,脚本安装时可手动选择是否使用,本地dns解析建议使用114.114.114.114
|
||||
- 如果智能解析后发现不能上网,第一可以升级客户端、第二可以将address填写自己的科学上网的域名,不再使用智能解析CDN的域名,Shadowrocket可以将伪装域名添加到外层的Peer【Shadowrocket不兼容所致,Shadowrocket更新后第一时间更新】。
|
||||
- 如果对默认的不满意,则可以[点此查看最新的](https://github.com/mack-a/v2ray-agent/blob/master/optimize_V2Ray.md),或者加入[TG群](https://t.me/technologyshare)添加适合自己的CDN ip。
|
||||
|
|
10
install.sh
10
install.sh
|
@ -88,7 +88,7 @@ installTools(){
|
|||
sed -i "${acmeBashrcLine}d" /root/.bashrc
|
||||
fi
|
||||
rm -rf /etc/systemd/system/v2ray.service
|
||||
if [[ ! -z `find /bin -name "systemctl"` ]]
|
||||
if [[ ! -z `find /bin /usr/bin -name "systemctl"` ]]
|
||||
then
|
||||
systemctl daemon-reload
|
||||
else
|
||||
|
@ -100,7 +100,7 @@ installTools(){
|
|||
|
||||
echoContent skyBlue "检查、安装工具包:"
|
||||
|
||||
echoContent green " 更新中,请等待"
|
||||
echoContent green " 更新中,等耐心等待,时间可能比较久"
|
||||
${upgrade} > /dev/null
|
||||
rm -rf /var/run/yum.pid
|
||||
echoContent green "更新完毕"
|
||||
|
@ -355,13 +355,13 @@ installV2Ray(){
|
|||
mkdir -p /usr/bin/v2ray/
|
||||
cp /tmp/v2ray/v2ray /usr/bin/v2ray/ && cp /tmp/v2ray/v2ctl /usr/bin/v2ray/
|
||||
fi
|
||||
if [[ ! -z `find /bin -name "systemctl"` ]]
|
||||
if [[ ! -z `find /bin /usr/bin -name "systemctl"` ]]
|
||||
then
|
||||
installV2RayService
|
||||
fi
|
||||
|
||||
initV2RayConfig $2
|
||||
if [[ ! -z `find /bin -name "systemctl"` ]]
|
||||
if [[ ! -z `find /bin /usr/bin -name "systemctl"` ]]
|
||||
then
|
||||
systemctl daemon-reload
|
||||
systemctl enable v2ray.service
|
||||
|
@ -630,7 +630,7 @@ init(){
|
|||
if [[ ! -z `ps -ef|grep -v grep|grep v2ray` ]]
|
||||
then
|
||||
echoContent yellow " V2Ray:【运行中】"
|
||||
elif [[ ! -z `find /usr/bin/v2ray/ -name 'v2ray'` ]]
|
||||
elif [[ ! -z `ls -F /usr/bin/v2ray/|grep "v2ray"` ]]
|
||||
then
|
||||
echoContent yellow " V2Ray:【未运行】,执行【/usr/bin/v2ray/v2ray -config /etc/v2ray/config.json &】运行"
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue