]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/cats/create_bacula_database.in
bat: Use BVFS on bRestore view
[bacula/bacula] / bacula / src / cats / create_bacula_database.in
index 468e9c7a0d16b71881b1598f92dda14b0f2b0519..d28508d12135a19636186925ff5a882bf7a12aea 100644 (file)
@@ -1,17 +1,20 @@
 #!/bin/sh
 #
 # This routine creates the Bacula database
-#  using PostgreSQL, MySQL, or SQLite.
+#  using PostgreSQL, Ingres, MySQL, or SQLite.
 #
-if test xsqlite = x@DB_NAME@ ; then
+if test xsqlite3 = x@DB_TYPE@ ; then
   echo "Creating SQLite database"
-  @scriptdir@/create_sqlite_database
+  @scriptdir@/create_@DB_TYPE@_database
 else
-  if test xmysql = x@DB_NAME@ ; then
+  if test xmysql = x@DB_TYPE@ ; then
     echo "Creating MySQL database"
-    @scriptdir@/create_mysql_database
+    @scriptdir@/create_mysql_database $*
+  elif test xingres = x@DB_TYPE@ ; then
+    echo "Creating Ingres database with $*"
+    @scriptdir@/create_ingres_database $*
   else
     echo "Creating PostgreSQL database"
-    @scriptdir@/create_postgresql_database
+    @scriptdir@/create_postgresql_database $*
   fi
 fi