monitoring-plugins/check_decryption.sh

16 lines
220 B
Bash
Raw Normal View History

2020-04-30 15:06:02 +02:00
#!/bin/bash
HOST=$1
PORT=$2
nc -z -w2 $HOST $PORT
STATUS=$?
if [[ $STATUS -eq 0 ]]; then
echo "$HOST:$PORT is waiting for disk decryption! Do it now!"
exit 2
else
echo "Port is closed, nothing to do"
exit 0
fi