From 1eed01623a97637e9e8369fcbfa52f4854c71270 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Wed, 13 Nov 2024 05:53:44 +0900 Subject: [PATCH] chore: clarify timeout message --- helpers/funcs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/funcs b/helpers/funcs index b0c57d7..59c3718 100755 --- a/helpers/funcs +++ b/helpers/funcs @@ -671,7 +671,7 @@ test_ping(){ local qport="$2" local res res=$(ping -c1 -4 -W0.5 $1 | grep time= | awk -F= '{print $4}') - [[ ! $? -eq 0 ]] && res="Unreachable" + [[ ! $? -eq 0 ]] && res="Timed out" printf "%s" "$res" } show_server_modlist(){