]> git.sur5r.net Git - bacula/bacula/blob - regress/debug
Make out of freespace non-fatal for removable devices -- i.e. behaves like tape
[bacula/bacula] / regress / debug
1 #!/bin/sh
2 #
3 # Copyright (C) 2000-2015 Kern Sibbald
4 # License: BSD 2-Clause; see file LICENSE-FOSS
5 #
6
7 # Set regression debug listing on/off
8 # This has to be sourced to work right
9 #
10 if test $1 = "on" ; then
11   REGRESS_DEBUG=1
12   echo "Setting debug on"
13 else
14   REGRESS_DEBUG=0
15   unset REGRESS_WAIT
16   echo "Setting debug off"
17 fi
18 export REGRESS_DEBUG