#!/bin/sh # # Drop Bacula tables -- works for whatever is configured, # MySQL or SQLite # if test xsqlite = x@DB_NAME@ ; then . ./drop_sqlite_tables echo "Dropped SQLite tables" else if test xmysql = x@DB_NAME@ ; then echo "Making MySQL tables" . ./drop_mysql_tables echo "Dropped MySQL tables" else # hardcoded database name - should be a parameter . ./drop_postgresql_tables bacula echo "Dropped PostgreSQL tables" fi fi