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

cd /var/bacula
rm -rf ${db_name}.db
echo "SQLite database dropped."
