#!/bin/sh
#
# shell script to Delete the SQLite tables, we simply delete and recreate
#  the database.
#
db_name=bacula

rm -f /var/bacula/${db_name}.db
touch /var/bacula/${db_name}.db
