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

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