partage public
This commit is contained in:
14
check_fetchmail
Executable file
14
check_fetchmail
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user