#!/bin/sh
#
# This routine makes the appropriately configured
#  Bacula tables for either MySQL or SQLite
#
if test xsqlite = xsqlite ; then
  echo "Making SQLite tables"
  . ./make_sqlite_tables
else
  echo "Making MySQL tables"
  . ./make_mysql_tables
fi
