]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/drop_sqlite_database.in
Add locking-mtx-changer + more doc
[bacula/bacula] / bacula / src / cats / drop_sqlite_database.in
1 #!/bin/sh
2 #
3 # shell script to drop Bacula SQLite tables
4
5 if test xsqlite = x@DB_NAME@ ; then 
6   cd @working_dir@
7   rm -rf bacula.db
8   echo "SQLite database dropped."
9 else
10   echo "Bacula is not configured for an SQLite database."
11 fi