View Single Post

  #1 (permalink)  
Old 05-16-2008, 05:54 PM
permalac permalac is offline
Junior Member
User
 
Join Date: May 2008
Location: barcelona
My distro: fc1,4,7&8,debian3&4,SLES10,opensuse11
Posts: 23
Rep Power: 0
permalac is on a distinguished road
Default Cron to check a website and restart it if down

hi,


Quote:
#!/bin/sh

wget website.com -o /tmp/web
value=`cat /tmp/web |grep OK | nl|awk '{print$1}'`

if [ $value -eq '' ]
then

restart service
fi
and on cron i launch it each 15 minutes


but I know there are better ways to do that

whats your way?


Thanks
Reply With Quote