#!/bin/sh
#
# shell script to Delete the SQLite Bacula database (same as deleting 
#  the tables)
#
db_name=${DB_NAME:-bacula}

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