Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 02 Feb 2010 12:48:40 +0400
From:      Nadir Aliyev <nadir@ultel.net>
To:        <freebsd-questions@freebsd.org>
Subject:   crontab
Message-ID:  <85d1584578da54a48257f998b89fd337@localhost>

next in thread | raw e-mail | index | archive | help


Hello friends. 

I have interesting situation with cron. 

I created a
simple script for process monitoring:

#!/usr/local/bin/bash
processname=`/bin/ps aux | /usr/bin/grep -v grep |
/usr/bin/grep -c 'maintenance_jobs.php'`
if [ $processname -le "0" ];
then
echo "`/bin/date` > JOB WAS DEAD. RESTARTED!" | mail -s "ATTENTION"
my@email.net;
/usr/local/bin/php
/usr/local/www/web/bin/maintenance_jobs.php  then" is not interpretated by
shell when i run this script from cron.

I tried it on sh and bash. Result
is same.
But this script worked on pre 8 versions.




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?85d1584578da54a48257f998b89fd337>