]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/cleanup
regress: add remote control functions
[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 find . -name "gigaslam.gif" -exec rm -f {} \;
17
18
19 # bin directory does not always exist
20 if [ -d ${bin} ] ; then
21   if [ -f ${bin}/bacula ] ; then
22      ${bin}/bacula stop 2>&1 >/dev/null
23   fi
24   cd ${scripts}
25   ./drop_bacula_tables      >/dev/null 2>&1
26   ./make_bacula_tables      >/dev/null 2>&1
27   ./grant_bacula_privileges >/dev/null 2>&1
28   cd ${cwd}
29 fi
30
31 if [ x$USE_VTAPE = xyes ]; then
32    rm -rf ${working}/ach
33 fi