check_smssend added

This commit is contained in:
Páll Guðjón Sigurðsson 2010-08-25 15:33:01 +00:00
parent 8639e9ab5b
commit 97fc022700
2 changed files with 99 additions and 0 deletions

View File

@ -0,0 +1 @@
Few handy scripts to check if your modem is working properly with smssend

View File

@ -0,0 +1,98 @@
#!/bin/sh
DIRECTORY=/var/spool/sms/incoming
MAX_HOURS=24
PURGE_OLD_FILES=no
FROM_NUMBER=""
VERSION=1.0
OK=0
WARNING=1
CRITICAL=2
UNKNOWN=3
print_help() {
echo "check_smsend version $VERSION"
echo "This plugin checks sms incoming for new SMS"
echo ""
echo "Usage: $0 [--directory] [--max-age] [--purge-old-files] [--verbose]"
echo ""
}
# Parse arguments
while [ $# -gt 0 ]
do
case $1
in
-h)
print_help
shift 1
exit $OK
;;
--help)
print_help
shift 1
exit $OK
;;
--max-age)
MAX_AGE=$2
shift 2
;;
--directory)
DIRECTORY=$2
shift 2
;;
--purge-old-files)
PURGE_OLD_FILES=yes
shift 1
;;
--verbose)
VERBOSE=yes
shift 1
;;
*)
echo "Invalid parameter: $1"
print_help
exit $UNKNOWN
;;
esac
done
if [ ! -d "$DIRECTORY" ]; then
echo "Unknown - $DIRECTORY not found or not readable"
exit $UNKNOWN
fi
RESULT=`find $DIRECTORY -type f -mtime -${MAX_HOURS}`
TMP=`echo $RESULT|wc -w`
# Clean up old files if we are asked to
if [ "$PURGE_OLD_FILES" = "YES" ]; then
find $DIRECTORY -type f -mtime +${MAX_HOURS} -exec rm -f {} \;
fi
# Fail if we find no files
if [ $TMP -lt 1 ]; then
echo "Warning - No recent SMS found in $DIRECTORY"
exit $WARNING
fi
echo "OK - $TMP files found in $DIRECTORY"
if [ ! -z "$VERBOSE" ]; then
for i in $RESULT; do echo $i; done
fi
exit $OK