]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix database update scripts Release-7.9.1
authorKern Sibbald <kern@sibbald.com>
Mon, 29 May 2017 06:52:49 +0000 (08:52 +0200)
committerKern Sibbald <kern@sibbald.com>
Mon, 29 May 2017 06:52:49 +0000 (08:52 +0200)
bacula/src/cats/update_mysql_tables.in
bacula/src/cats/update_postgresql_tables.in
bacula/src/cats/update_sqlite3_tables.in

index f33356fedaca223705149d120d56252a9967c274..0c7329281cc182560775a344f2f6efe3d1332151 100644 (file)
@@ -35,10 +35,10 @@ if [ "x$DBVERSION" = x ]; then
     exit 1
 fi
 
-if [ "$DBVERSION" -lt 12 -o "$DBVERSION" -gt 14 ] ; then
+if [ "$DBVERSION" -lt 12 -o "$DBVERSION" -gt 15 ] ; then
     echo " "
     echo "The existing database is version $DBVERSION !!"
-    echo "This script can only update an existing version 12-14 version 15."
+    echo "This script can only update an existing version 12-15 to version 16."
     echo "Error. Cannot upgrade this database."
     echo " "
     exit 1
index 3a7e4bc1379b524519f834f37c72da69b81a9ead..aa6400e075b688898f0d7dbd732dc5a899c9d3b4 100644 (file)
@@ -34,10 +34,10 @@ if [ "x$DBVERSION" = x ]; then
     exit 1
 fi
 
-if [ "$DBVERSION" -lt 12 -o "$DBVERSION" -gt 14 ] ; then
+if [ "$DBVERSION" -lt 12 -o "$DBVERSION" -gt 15 ] ; then
     echo " "
     echo "The existing database is version $DBVERSION !!"
-    echo "This script can only update an existing version 12-14, 1014-1016 database to version 1017."
+    echo "This script can only update an existing version 12-15 database to version 16."
     echo "Error. Cannot upgrade this database."
     echo " "
     exit 1
index 00be950baf052ea73a23684a0ed3b63b91f7a7a6..7595a2f56d91f52bcc16692082df7a006024d5b2 100644 (file)
@@ -22,10 +22,10 @@ DBVERSION=`sqlite3 ${db_name}.db <<END
 SELECT VersionId FROM Version LIMIT 1;
 END
 `
-if [ "$DBVERSION" -lt 12 -o "$DBVERSION" -gt 14 ] ; then
+if [ "$DBVERSION" -lt 12 -o "$DBVERSION" -gt 15 ] ; then
     echo " "
     echo "The existing database is version $DBVERSION !!"
-    echo "This script can only update an existing version 12, 13, 14 or 1014 database to version 1015."
+    echo "This script can only update an existing version 12, 13, 14 or 15 database to version 16."
     echo "Error. Cannot upgrade this database."
     echo " "
     exit 1