#!/bin/sh # # Run a simple backup of the Bacula build directory but # create three volumes and do six backups causing the # volumes to be recycled, and cycling through the volumes # twice. Tests maxvoljobs and volretention. # cwd=`pwd` scripts/copy-test-confs scripts/cleanup echo "${cwd}/build" >/tmp/file-list echo " " echo " " echo " === Starting recycle-test ===" echo " === Starting recycle-test ===" >working/log echo " " bin/bacula start 2>&1 >/dev/null bin/bconsole -c bin/bconsole.conf <&1 >/dev/null grep "^ Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null bstat=$? grep "^ Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null rstat=$? diff -r build tmp/bacula-restores${cwd}/build 2>&1 >/dev/null if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then echo " " echo " " echo " !!!!! recycle-test Bacula source failed!!! !!!!! " echo " !!!!! recycle-test failed!!! !!!!! " >>test.out if [ $bstat != 0 -o $rstat != 0 ] ; then echo " !!!!! Bad Job termination status !!!!! " echo " !!!!! Bad Job termination status !!!!! " >>test.out else echo " !!!!! Restored files differ !!!!! " echo " !!!!! Restored files differ !!!!! " >>test.out fi echo " " else echo " ===== recycle-test Bacula source OK ===== " echo " ===== recycle-test OK ===== " >>test.out scripts/cleanup fi