#!/bin/sh # # Shell script to update MySQL Community version 5.0.x to 5.2.x # # Author: Kern Sibbald # License: LGPLv3 # echo " " echo "This script will update a Bacula MySQL database from version 12 to 14" echo " which is needed to convert from Bacula Community version 5.0.x to 5.2.x" echo " " bindir=@MYSQL_BINDIR@ PATH="$bindir:$PATH" db_name=${db_name:-@db_name@} mysql -D ${db_name} $* -e "select VersionId from Version\G" >/tmp/$$ DBVERSION=`sed -n -e 's/^VersionId: \(.*\)$/\1/p' /tmp/$$` if [ $DBVERSION != 12 ] ; then echo " " echo "The existing database is version $DBVERSION !!" echo "This script can only update an existing version 12 database to version 14." echo "Error. Cannot upgrade this database." echo " " exit 1 fi if mysql -D ${db_name} $* -f <