Compare commits

..

No commits in common. "ed447579006f881fc9a81d900aecd17f8ae13962" and "f4365d32e5cf5a6fec9a0596f1da4ba75a000e5c" have entirely different histories.

2 changed files with 6 additions and 6 deletions

View File

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

View File

@ -5,11 +5,12 @@
# "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
@ -64,12 +65,11 @@ 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" -o "${to_check}" == "YES" -o "${to_check}" == "Y" -o "${to_check}" == "T" ] ; then
echo "Checking host: $Host on port $PortSSH"
else
to_check="${ToCheck}^^"
if [ "${to_check}" != "TRUE" && "${to_check}" != "YES" && "${to_check}" != "Y" && "${to_check}" != "T" ]; then
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