View Single Post

  #3 (permalink)  
Old 05-16-2008, 07:19 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

I like yours more than mine, .. still i'll paste it here for global interest.

Quote:
#!/bin/sh

URL=site.es

lynx -dump "$URL" > /dev/null 2> /dev/null

EXITCODE=$?

if [ "$EXITCODE" -eq "0" ]
then
echo "OK"
else
# echo "ERROR: $EXITCODE"
/opt/www/site.es/bin/zopectl restart
fi

exit 0
Reply With Quote