]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/cleanup
c501428061b7495b673262785fb8287c57de5ad5
[bacula/bacula] / regress / scripts / cleanup
1 #!/bin/sh
2 #
3 # Cleanup left over files -- both before and after test run
4 #
5 . scripts/functions
6 cwd=`pwd`
7 rm -rf ${tmp}/FileVolume*
8 rm -rf ${tmp}/TestVolume001 ${tmp}bacula-restores ${tmp}/Small*
9 rm -rf ${tmp}/sed_tmp ${tmp}/file-list
10 rm -rf ${tmp}/*
11 rm -rf ${working}/log ${tmp}/TEST-*
12 rm -rf ${working}/log ${tmp}/Backup-*
13 rm -rf ${working}/*.bsr ${working}/log*.sd
14 rm -rf ${working}/*.trace ${working}/*.traceback ${working}/*.bactrace 
15 rm -rf ${tmp}disk-changer
16 rm -f ${cwd}/bin/plugins/test-plugin-fd.so
17 find . -name "gigaslam.gif" -exec rm -f {} \;
18
19
20 # bin directory does not always exist
21 if [ -d ${bin} ] ; then
22   if [ -f ${bin}/bacula ] ; then
23      ${bin}/bacula stop 2>&1 >/dev/null
24   fi
25   cd ${scripts}
26   ./drop_bacula_tables      >/dev/null 2>&1
27   ./make_bacula_tables      >/dev/null 2>&1
28   ./grant_bacula_privileges >/dev/null 2>&1
29   cd ${cwd}
30 fi
31
32 if [ x$USE_VTAPE = xyes ]; then
33    rm -rf ${working}/ach
34 fi