3 # shell script to drop Bacula database(s)
9 if test xmysql = x@DB_TYPE@ ; then
10 $bindir/mysql $* -f <<END-OF-DATA
11 DROP DATABASE ${db_name};
13 if test $? -eq 0 ; then
14 echo "Drop of ${db_name} database succeeded."
16 echo "Drop of ${db_name} database failed."
19 echo "Bacula is not configured for a MySQL database."