#!/bin/sh
#
# shell script to drop Bacula SQLite tables

if test xsqlite = xsqlite3 -o xsqlite3 = xsqlite3 ; then 
  cd /var/bacula
  rm -rf bacula.db
  echo "SQLite database dropped."
else
  echo "Bacula is not configured for an SQLite database."
fi
