On Wed, Oct 08, 2003 at 10:03:19AM -0700, John L wrote:
> Good morning.  I'm looking for an example of a script that I can run
> as a cron job every five minutes that will check to see if a daemon
> is running (named) and restart it if it is not.

Rough, and untested ...

service $service status &>/dev/null; [ $(echo $?) -ne 0 ] && service $service restart 

-- 
Hal Burgiss
 


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list

Reply via email to