#!/bin/sh # # Run a simple backup of the Bacula build directory using the compressed option # then backup four times, each with incremental then finally restore. # It should require at least 4 different bsrs. # cwd=`pwd` scripts/copy-tape-confs scripts/cleanup-tape echo "${cwd}/build" >/tmp/file-list echo " " echo " " echo " === Starting relabel-tape at `date +%R:%S` ===" echo " === Starting relabel-tape at `date +%R:%S` ===" >>working/log echo " " bin/bacula start 2>&1 >/dev/null #bin/bacula start bin/bconsole -c bin/bconsole.conf <&1 >/dev/null #bin/bconsole -c bin/bconsole.conf <&1 >/dev/null @output /dev/null restore where=${cwd}/tmp/bacula-restores select all done yes wait restore where=${cwd}/tmp/bacula-restores select all done yes wait @output tmp/log2.out @# @# now unmount the tape and start two restores @# at the same time @# unmount storage=DDS-4 restore where=${cwd}/tmp/bacula-restores select all done yes restore where=${cwd}/tmp/bacula-restores select unmark * mark * done yes mount storage=DDS-4 wait messages @output quit END_OF_DATA scripts/check_for_zombie_jobs storage=DDS-4 bin/bacula stop 2>&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 dstat=$? if [ $dstat != 0 -o $bstat != 0 -o $rstat != 0 ] ; then echo " " echo " " echo " !!!!! relabel-tape Bacula source failed!!! !!!!! " echo " !!!!! relabel-tape failed!!! !!!!! " >>test.out echo "diff=$dstat backup=$bstat restore=$rstat" echo " " else echo " ===== relabel-tape Bacula source OK ===== " echo " ===== relabel-tape OK ===== " >>test.out scripts/cleanup fi