12 lines
409 B
Bash
Executable File
12 lines
409 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ $(ps ax | grep 'eventService.py' | grep -v grep | wc -l) -eq 0 ]] ; then
|
|
python3 sendAuthMail.py "Service -eventService daemon NOT running - event-alerting disabled"
|
|
fi
|
|
|
|
cat processesToCheck.txt | while read -r LINE; do
|
|
if [[ $(ps ax | grep "${LINE}" | grep -v grep | wc -l) -eq 0 ]] ; then
|
|
./addEvent.sh "ERROR,${LINE},3,10,Service ${LINE} NOT running anymore"
|
|
fi
|
|
done
|