]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/cats/drop_sqlite3_database.in
Split messages line by line before sending it to syslog() fix #3325
[bacula/bacula] / bacula / src / cats / drop_sqlite3_database.in
index b405a7b46a9c83b2e9c0d8d71f2db2f9e0bc187a..f31450bb3a8c33f56f083a173b1512856a6e0470 100644 (file)
@@ -3,11 +3,6 @@
 # shell script to drop Bacula SQLite tables
 db_name=@db_name@
 
-
-if test xsqlite = x@DB_TYPE@ -o xsqlite3 = x@DB_TYPE@ ; then 
-  cd @working_dir@
-  rm -rf ${db_name}.db
-  echo "SQLite database dropped."
-else
-  echo "Bacula is not configured for an SQLite database."
-fi
+cd @working_dir@
+rm -rf ${db_name}.db
+echo "SQLite database dropped."