]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/drop_postgresql_database.in
- Fix ANSI labels to put EOF1 and EOF2 after each file mark.
[bacula/bacula] / bacula / src / cats / drop_postgresql_database.in
1 #!/bin/sh
2 #
3 # shell script to drop Bacula database(s)
4 #
5
6 bindir=@SQL_BINDIR@
7
8 if $bindir/dropdb bacula
9 then
10    echo "Drop of bacula database succeeded."
11 else
12    echo "Drop of bacula database failed."
13 fi
14 exit 0