#!/bin/sh # # This routine makes the appropriately configured # Bacula tables for PostgreSQL, MySQL, or SQLite. # if test xsqlite = x@DB_NAME@ ; then echo "Making SQLite tables" @scriptdir@/make_sqlite_tables $* else if test xmysql = x@DB_NAME@ ; then echo "Making MySQL tables" @scriptdir@/make_mysql_tables $* else echo "Making PostgreSQL tables" @scriptdir@/make_postgresql_tables $* fi fi