#!/bin/bash
#
# Bacula storage maintenance scripts
# Drop Bacula PostgreSQL database
#

if /usr/bin/dropdb bacula
then
   echo "Drop of bacula database succeeded."
   exit 0
else
   echo "Drop of @db_name database failed."
   exit 1
fi
