1#!/bin/sh 2# 3# Copyright (C) 2000-2015 Kern Sibbald 4# License: BSD 2-Clause; see file LICENSE-FOSS 5# 6# shell script to drop Bacula SQLite tables 7db_name=@db_name@ 8 9cd @working_dir@ 10rm -rf ${db_name}.db 11echo "SQLite database dropped." 12