#!/bin/sh # # shell script to drop Bacula database(s) # bindir=@SQL_BINDIR@ if $bindir/dropdb bacula then echo "Drop of bacula database succeeded." else echo "Drop of bacula database failed." fi exit 0