]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/drop_sqlite3_database.in
- Fix ANSI labels to put EOF1 and EOF2 after each file mark.
[bacula/bacula] / bacula / src / cats / drop_sqlite3_database.in
1 #!/bin/sh
2 #
3 # shell script to drop Bacula SQLite tables
4
5 if test xsqlite = x@DB_NAME@ -o xsqlite3 = 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