feat(脚本): 修改MTPROTO可单独安装、兼容卸载脚本时卸载MTPROTO

pull/534/merge
mack-a 2021-03-12 16:06:46 +08:00
parent 94715e6237
commit 23ab7ceead
1 changed files with 9 additions and 8 deletions

View File

@ -2231,8 +2231,14 @@ unInstall() {
handleV2Ray stop handleV2Ray stop
handleTrojanGo stop handleTrojanGo stop
handleMTG stop
rm -rf /etc/systemd/system/v2ray.service rm -rf /etc/systemd/system/v2ray.service
echoContent green " ---> 删除V2Ray开机自启完成" echoContent green " ---> 删除V2Ray开机自启完成"
rm -rf /etc/systemd/system/mtg.service
echoContent green " ---> 删除MTG开机自启完成"
rm -rf /etc/systemd/system/trojan-go.service rm -rf /etc/systemd/system/trojan-go.service
echoContent green " ---> 删除Trojan-Go开机自启完成" echoContent green " ---> 删除Trojan-Go开机自启完成"
rm -rf /tmp/v2ray-agent-tls/* rm -rf /tmp/v2ray-agent-tls/*
@ -3381,11 +3387,6 @@ subscribe() {
# 安装MT # 安装MT
setMTG() { setMTG() {
if [[ -z "${configPath}" ]]; then
echoContent red " ---> 未安装,请使用脚本安装"
menu
exit 0
fi
echoContent skyBlue "\n功能 1/${totalProgress} : 设置MTPROTO[FAKE TLS]" echoContent skyBlue "\n功能 1/${totalProgress} : 设置MTPROTO[FAKE TLS]"
echoContent skyBlue "-------------------------备注---------------------------------" echoContent skyBlue "-------------------------备注---------------------------------"
echoContent yellow "# 使用MTPROTO有被阻断的风险请熟知其中的风险" echoContent yellow "# 使用MTPROTO有被阻断的风险请熟知其中的风险"
@ -3413,8 +3414,8 @@ setMTG() {
# 卸载MTG # 卸载MTG
unInstallMTG() { unInstallMTG() {
if [[ -z "${coreInstallType}" ]]; then if [[ ! -f "/etc/v2ray-agent/mtg/mtg" ]]; then
echoContent red "\n ---> 没有检测到安装目录,请执行脚本安装内容" echoContent red "\n ---> 没有检测到MTG"
menu menu
exit 0 exit 0
fi fi
@ -3483,7 +3484,7 @@ menu() {
cd "$HOME" || exit cd "$HOME" || exit
echoContent red "\n==============================================================" echoContent red "\n=============================================================="
echoContent green "作者mack-a" echoContent green "作者mack-a"
echoContent green "当前版本v2.4.1" echoContent green "当前版本v2.4.2"
echoContent green "Githubhttps://github.com/mack-a/v2ray-agent" echoContent green "Githubhttps://github.com/mack-a/v2ray-agent"
echoContent green "描述:七合一共存脚本" echoContent green "描述:七合一共存脚本"
echoContent red "==============================================================" echoContent red "=============================================================="