fix(脚本): 修改异常报错问题

pull/1022/head
mack-a 2024-04-24 15:51:32 +08:00
parent f28c05917d
commit bd6e854b0f
1 changed files with 2 additions and 3 deletions

View File

@ -605,14 +605,13 @@ allowPort() {
checkUFWAllowPort "$1" checkUFWAllowPort "$1"
fi fi
fi fi
elif rc-update show | grep ufw 2>/dev/null | grep -q "ufw"; then elif rc-update show 2>/dev/null | grep -q ufw; then
if ufw status | grep -q "Status: active"; then if ufw status | grep -q "Status: active"; then
if ! ufw status | grep -q "$1/${type}"; then if ! ufw status | grep -q "$1/${type}"; then
sudo ufw allow "$1/${type}" sudo ufw allow "$1/${type}"
checkUFWAllowPort "$1" checkUFWAllowPort "$1"
fi fi
fi fi
elif systemctl status firewalld 2>/dev/null | grep -q "active (running)"; then elif systemctl status firewalld 2>/dev/null | grep -q "active (running)"; then
local updateFirewalldStatus= local updateFirewalldStatus=
if ! firewall-cmd --list-ports --permanent | grep -qw "$1/${type}"; then if ! firewall-cmd --list-ports --permanent | grep -qw "$1/${type}"; then
@ -9079,7 +9078,7 @@ menu() {
cd "$HOME" || exit cd "$HOME" || exit
echoContent red "\n==============================================================" echoContent red "\n=============================================================="
echoContent green "作者mack-a" echoContent green "作者mack-a"
echoContent green "当前版本v3.2.44" echoContent green "当前版本v3.2.45"
echoContent green "Githubhttps://github.com/mack-a/v2ray-agent" echoContent green "Githubhttps://github.com/mack-a/v2ray-agent"
echoContent green "描述:八合一共存脚本\c" echoContent green "描述:八合一共存脚本\c"
showInstallStatus showInstallStatus