#!/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 . ./drop_mysql_tables echo "Dropped MySQL tables" fi