]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/cats/make_bacula_tables.in
Correct compile error
[bacula/bacula] / bacula / src / cats / make_bacula_tables.in
index 58cab959f543763b00c67f27ccbcb4902e5061cb..0c6dd12eb6663df175f0fdacf809c59953c128e5 100755 (executable)
@@ -3,16 +3,15 @@
 # This routine makes the appropriately configured
 #  Bacula tables for PostgreSQL, MySQL, or SQLite.
 #
-if test xsqlite = x@DB_NAME@ ; then
+if test xsqlite = x@DB_TYPE@ -o xsqlite3 = x@DB_TYPE@ ; then
   echo "Making SQLite tables"
-  @scriptdir@/make_sqlite_tables
+  @scriptdir@/make_@DB_TYPE@_tables $*
 else
-  if test xmysql = x@DB_NAME@ ; then 
+  if test xmysql = x@DB_TYPE@ ; then 
     echo "Making MySQL tables"
-    @scriptdir@/make_mysql_tables
+    @scriptdir@/make_mysql_tables $*
   else
     echo "Making PostgreSQL tables"
-    # hard coded database name
-    @scriptdir@/make_postgresql_tables bacula
+    @scriptdir@/make_postgresql_tables $*
   fi
 fi