From: Dan Langille Date: Fri, 12 Dec 2003 15:46:16 +0000 (+0000) Subject: hardcode the database name for PostgreSQL X-Git-Tag: Release-1.34.0~287 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=41fd507664721ae1c54f360384bc5bc4e6b50969;p=bacula%2Fbacula hardcode the database name for PostgreSQL git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@869 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/cats/make_bacula_tables.in b/bacula/src/cats/make_bacula_tables.in index 0195bb00ba..a40d886cf9 100755 --- a/bacula/src/cats/make_bacula_tables.in +++ b/bacula/src/cats/make_bacula_tables.in @@ -1,7 +1,7 @@ #!/bin/sh # # This routine makes the appropriately configured -# Bacula tables for either MySQL or SQLite +# Bacula tables for PostgreSQL, MySQL, or SQLite. # if test xsqlite = x@DB_NAME@ ; then echo "Making SQLite tables" @@ -12,6 +12,7 @@ else . ./make_mysql_tables else echo "Making PostgreSQL tables" - . ./make_postgresql_tables + # hard coded database name + . ./make_postgresql_tables bacula fi fi