del config dont get ip

This commit is contained in:
233boy
2024-12-05 20:29:00 +08:00
parent 7270c1a16d
commit 86bb946091
3 changed files with 6 additions and 2 deletions

View File

@@ -124,7 +124,7 @@ get_uuid() {
}
get_ip() {
[[ $ip || $is_no_auto_tls || $is_gen ]] && return
[[ $ip || $is_no_auto_tls || $is_gen || $is_dont_get_ip ]] && return
export "$(_wget -4 -qO- https://one.one.one.one/cdn-cgi/trace | grep ip=)" &>/dev/null
[[ ! $ip ]] && export "$(_wget -6 -qO- https://one.one.one.one/cdn-cgi/trace | grep ip=)" &>/dev/null
[[ ! $ip ]] && {
@@ -732,6 +732,8 @@ change() {
# delete config.
del() {
# dont get ip
is_dont_get_ip=1
[[ $is_conf_dir_empty ]] && return # not found any json file.
# get a config file
[[ ! $is_config_file ]] && get info $1
@@ -761,6 +763,7 @@ del() {
warn "当前配置目录为空! 因为你刚刚删除了最后一个配置文件."
is_conf_dir_empty=1
fi
unset is_dont_get_ip
[[ $is_dont_auto_exit ]] && unset is_config_file
}