Compare commits

..

2 Commits

Author SHA1 Message Date
ed44757900 fix 2024-12-03 13:55:39 -05:00
340283c0a9 fix: syntax 2024-12-03 13:54:56 -05:00
2 changed files with 6 additions and 6 deletions

View File

@ -1 +1 @@
1.8.8.F2,no boolean for jq, it considers "false" as missing (null)
1.8.8.F3,syntax fix

View File

@ -5,12 +5,11 @@
# "users": ["oleg"],
# "type": "cloud",
# "ssh_port": 7822,
# # "to_check": "false"
# "to_check": "false"
# "timeout_sec": 5
# },
RootDir="${HOME}/prod"
# RootDir=/home/oleg/develop/cvtt2 ###### D E B U G
AlertChannel=Alerts-CVTT
Sender=${RootDir}/ops/utils/send_mmost.sh
@ -65,11 +64,12 @@ for Host in ${Hosts[@]} ; do
Timeout=$(echo "$HOSTS_CONFIG" | jq -r --arg domain "$Domain" --arg host "$host" '.[$domain][$host].timeout_sec // '"$DEFAULT_TIMEOUT"'')
ToCheck=$(echo "$HOSTS_CONFIG" | jq -r --arg domain "$Domain" --arg host "$host" '.[$domain][$host].to_check // '"$DEFAULT_TO_CHECK"'')
to_check="${ToCheck}^^"
if [ "${to_check}" != "TRUE" && "${to_check}" != "YES" && "${to_check}" != "Y" && "${to_check}" != "T" ]; then
to_check="${ToCheck^^}"
if [ "${to_check}" == "TRUE" -o "${to_check}" == "YES" -o "${to_check}" == "Y" -o "${to_check}" == "T" ] ; then
echo "Checking host: $Host on port $PortSSH"
else
continue
fi
echo "Checking host: $Host on port $PortSSH"
# Use nc to check if the specified port is open
if ! nc -z -w ${Timeout} "$Host" "$PortSSH"; then