mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 03:53:01 +02:00
fix: control flow
This commit is contained in:
parent
a83933ee8f
commit
72fc061abc
1 changed files with 6 additions and 3 deletions
9
dzgui.sh
9
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=4.1.0.rc-4
|
version=4.1.0.rc-5
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -749,13 +749,15 @@ parse_ips(){
|
||||||
fi
|
fi
|
||||||
local lan_ip=$(<<< $ip awk -F: '{print $1}')
|
local lan_ip=$(<<< $ip awk -F: '{print $1}')
|
||||||
local lan_qport=$(<<< $ip awk -F: '{print $2}')
|
local lan_qport=$(<<< $ip awk -F: '{print $2}')
|
||||||
|
logger INFO "Given LAN IP was $lan_ip"
|
||||||
|
logger INFO "Given LAN port was $lan_qport"
|
||||||
|
logger INFO "LAN response follows"
|
||||||
res=$(a2s $lan_ip $lan_qport info)
|
res=$(a2s $lan_ip $lan_qport info)
|
||||||
logger INFO "Local LAN response follows"
|
|
||||||
logger INFO "$res"
|
|
||||||
if [[ ! $? -eq 0 ]] || [[ $(<<< $res jq '.response|length') -eq 0 ]]; then
|
if [[ ! $? -eq 0 ]] || [[ $(<<< $res jq '.response|length') -eq 0 ]]; then
|
||||||
warn "Failed to retrieve server metadata. Check IP:PORT combination and try again."
|
warn "Failed to retrieve server metadata. Check IP:PORT combination and try again."
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
logger INFO "$res"
|
||||||
ip_table "$res"
|
ip_table "$res"
|
||||||
return 0
|
return 0
|
||||||
else
|
else
|
||||||
|
@ -1250,6 +1252,7 @@ a2s(){
|
||||||
local ip="$1"
|
local ip="$1"
|
||||||
local qport="$2"
|
local qport="$2"
|
||||||
local mode="$3"
|
local mode="$3"
|
||||||
|
logger A2S "Querying '$ip:$qport' with mode '$mode'"
|
||||||
python3 $helpers_path/query.py "$ip" "$qport" "$mode"
|
python3 $helpers_path/query.py "$ip" "$qport" "$mode"
|
||||||
}
|
}
|
||||||
format_config_address(){
|
format_config_address(){
|
||||||
|
|
Loading…
Reference in a new issue