#!/bin/sh
#
# shell script to drop Bacula database(s)
#

bindir=/usr/local/bin

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