This is interesting, there is also an entry in /etc/crontab
for this job that runs every minute:
/sbin/service redacted status > /dev/null
if [ "$?" -gt "0" ]; then
/bin/rm /var/run/redacted_proc/*
/sbin/service redacted restart && tail -n 200 /var/log/redacted_proc/redacted_prod.log | mail -s "redacted pid restarted on ${HOSTNAME}" [email protected]
fi
And ps
for that cron job shows as <defunct>
.
I am wondering if this somehow caused this program to get run twice.