#!/bin/sh # # This routine makes the appropriately configured # Bacula tables for PostgreSQL, MySQL, or SQLite. # if test xsqlite = xbdb -o xsqlite3 = xbdb ; then echo "Making SQLite tables" /etc/make_bdb_tables $* else if test xmysql = xbdb ; then echo "Making MySQL tables" /etc/make_mysql_tables $* else echo "Making PostgreSQL tables" /etc/make_postgresql_tables $* fi fi