Okay, I think I figured it out. I copied the script, "mysql.server" to "rc.mysql" and added the following to my startup and shutdown scripts:
rc.6 added:
# Shutdown MySQL
if [ -x /etc/rc.d/rc.mysql ]; then
echo "Shutting down MySQL...."
. /etc/rc.d/rc.mysql stop
fi
rc.M added:
# Start the MySQL script.
if [ -x /etc/rc.d/rc.mysql ]; then
echo "Trying to start MySQL...."
. /etc/rc.d/rc.mysql start
else
echo "Unable to start MySQL"
fi
This seems to work. However, now I seem to have another problem when MySQL starts up it blurps some message about the command, "@HOSTNAME@" being invalid. No worry - I'll tackle that one next.
Thanks,
mrplaid