]> 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 158ae3b8c69685ef329ae4363508792b7c16a48a..0195bb00ba424b44d2af05a7e4cb256e1608717d 100755 (executable)
@@ -7,6 +7,11 @@ if test xsqlite = x@DB_NAME@ ; then
   echo "Making SQLite tables"
   . ./make_sqlite_tables
 else
-  echo "Making MySQL tables"
-  . ./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