#!/bin/sh

# Stop Mysql and Apache, Check tables, Start Mysql and Apache

/etc/init.d/httpd stop
/etc/init.d/mysql stop
/usr/bin/myisamchk --force /var/lib/mysql/flooble/*.MYI
/etc/init.d/mysql start
/etc/init.d/httpd start
