#!/bin/sh
#
#  Drop Bacula tables -- works for whatever is configured,
#    MySQL, SQLite, Ingres, or PostgreSQL
#
if test xsqlite3 = xmysql ; then
  /usr/local/libexec/bacula/drop_mysql_tables $*
  echo "Dropped SQLite tables"
else
  if test xmysql = xmysql ; then 
    echo "Making MySQL tables"
    /usr/local/libexec/bacula/drop_mysql_tables $*
    echo "Dropped MySQL tables"
  elif test xingres = xmysql ; then
    echo "Dropping Ingres tables"
    /usr/local/libexec/bacula/drop_ingres_tables $*
    echo "Dropped Ingres tables"
  else
    # hardcoded database name - should be a parameter
    /usr/local/libexec/bacula/drop_postgresql_tables $*
    echo "Dropped PostgreSQL tables"
  fi
fi
