]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/cats/update_bacula_tables.in
Tweak mutex order for SD
[bacula/bacula] / bacula / src / cats / update_bacula_tables.in
index a1b1984cac5209ac503872ca74302161733fbf10..8ce59a573b4f586456e43854c84cca2c53d6df99 100755 (executable)
@@ -1,13 +1,17 @@
 #!/bin/sh
 #
 # This routine alters the appropriately configured
-#  Bacula tables for either MySQL or SQLite
+#  Bacula tables for PostgreSQL, MySQL, or SQLite.
 #
-if test xsqlite = x@DB_NAME@ ; then
+if test xsqlite3 = x@DB_TYPE@ ; then
   echo "Altering SQLite tables"
-  . ./update_sqlite_tables
+  @scriptdir@/update_@DB_TYPE@_tables $*
 fi
-if test xmysql = x@DB_NAME@ ; then
+if test xmysql = x@DB_TYPE@ ; then
   echo "Altering MySQL tables"
-  . ./update_mysql_tables
+  @scriptdir@/update_mysql_tables $*
+fi
+if test xpostgresql = x@DB_TYPE@ ; then
+  echo "Altering PostgreSQL tables"
+  @scriptdir@/update_postgresql_tables $*
 fi