#!/bin/sh # # Shell script to update MySQL tables from version 1.29 to 1.30 # echo " " echo "This script will update a bacula database from version 5 to 6." echo "Depending on the size of your database," echo "this script may take several minutes to run." echo " " # the location of the mysql program bindir=/usr/bin DB_VER=`$bindir/mysql bacula -e 'select * from Version;'|tail -n 1 2>/dev/null` if [ -z "$DB_VER" ]; then echo "Sorry, I can't seem to locate a bacula database." exit 1 fi if [ -n "$DB_VER" ] && [ "$DB_VER" -ne "5" ]; then echo "Sorry, this script is designed to update a version 5 database" echo "and you have a version $DB_VER database." exit 1 fi if $bindir/mysql $* -f <