]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/cats/make_bacula_tables.in
For symmetry, add this file. At present, all it does is update the version table.
[bacula/bacula] / bacula / src / cats / make_bacula_tables.in
index b4f5d19ad6abef1d9edee83e41f5d5acc43651a1..0195bb00ba424b44d2af05a7e4cb256e1608717d 100755 (executable)
@@ -5,8 +5,13 @@
 #
 if test xsqlite = x@DB_NAME@ ; then
   echo "Making SQLite tables"
-  source ./make_sqlite_tables
+  . ./make_sqlite_tables
 else
-  echo "Making MySQL tables"
-  source ./make_mysql_tables
+  if test xmysql = x@DB_NAME@ ; then 
+    echo "Making MySQL tables"
+    . ./make_mysql_tables
+  else
+    echo "Making PostgreSQL tables"
+    . ./make_postgresql_tables
+  fi
 fi