#!/bin/sh
#
# Copyright (C) 2000-2015 Kern Sibbald
# License: BSD 2-Clause; see file LICENSE-FOSS
#
# shell script to drop Bacula database(s)
#

bindir=/usr/bin
db_name=XXX_DBNAME_XXX

if $bindir/dropdb ${db_name}
then
   echo "Drop of ${db_name} database succeeded."
else
   echo "Drop of ${db_name} database failed."
fi
exit 0
