bin-utils/check_fetchmail
2015-05-30 18:42:42 +02:00

15 lines
228 B
Bash
Executable File

#!/bin/sh
LOGFILE=/shared/meutel/fetchmail.log
# check fetchmail running as daemon
if [ ! `pgrep fetchmail` ]; then
echo "fetchmail is not running"
fi
# check error in log
grep -3 error $LOGFILE
# clear log
echo > $LOGFILE