#!/bin/sh
#
# Copyright (C) 2000-2023 Kern Sibbald
# License: BSD 2-Clause; see file LICENSE-FOSS
#
# shell script to drop Bacula SQLite tables
db_name=bacula

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