Browse Source
Merge branch 'develop' into fix-7dtd-querport
pull/2142/head
Daniel Gibbs
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
16 additions and
1 deletions
-
lgsm/functions/command_dev_query_raw.sh
-
lgsm/functions/command_monitor.sh
|
|
@ -41,4 +41,18 @@ echo "./query_gsquery.py -a \"${ip}\" -p \"${queryport}\" -e \"${engine}\"" |
|
|
|
if [ ! -f "${functionsdir}/query_gsquery.py" ]; then |
|
|
|
fn_fetch_file_github "lgsm/functions" "query_gsquery.py" "${functionsdir}" "chmodx" "norun" "noforce" "nomd5" |
|
|
|
fi |
|
|
|
"${functionsdir}"/query_gsquery.py -a "${ip}" -p "${queryport}" -e "${engine}" |
|
|
|
"${functionsdir}"/query_gsquery.py -a "${ip}" -p "${queryport}" -e "${engine}" |
|
|
|
|
|
|
|
echo"" |
|
|
|
echo "=================================" |
|
|
|
echo "tcp Raw Output" |
|
|
|
echo "=================================" |
|
|
|
echo"" |
|
|
|
echo "bash -c 'exec 3<> /dev/tcp/'${ip}'/'${queryport}''" |
|
|
|
bash -c 'exec 3<> /dev/tcp/'${ip}'/'${queryport}'' |
|
|
|
querystatus="$?" |
|
|
|
if [ "${querystatus}" == "0" ]; then |
|
|
|
echo "tcp query PASS" |
|
|
|
else |
|
|
|
echo "tcp query FAIL" |
|
|
|
fi |
|
|
@ -13,6 +13,7 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|
|
|
fn_monitor_loop(){ |
|
|
|
# Will query up to 5 times every 15 seconds. |
|
|
|
# Query will wait up to 60 seconds to confirm server is down giving server time if changing map. |
|
|
|
totalseconds=0 |
|
|
|
for queryattempt in {1..5}; do |
|
|
|
fn_print_dots "Querying port: ${querymethod}: ${ip}:${queryport} : ${totalseconds}/${queryattempt}: " |
|
|
|
fn_print_querying_eol |
|
|
|