blob: d28efd9f7f4034b6469b9a36bb8ec3cea81676a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
FILE=/tmp/pylogsentinel.daily
if [ ! -f "$FILE" ]; then
echo "Nothing to do"
exit 0
fi
echo "Sending email"
cat "$FILE" | mail -s "pylogsentinel alert batch" root
echo "Removing batch file"
rm "$FILE"
|