#!/bin/sh # # Run a simple backup of the Bacula build directory # to two tapes where the maximum tape file size is set to 1M # Note, this test simulates the tape filling and writing to # the next tape. # cwd=`pwd` scripts/cleanup scripts/copy-2tape-confs scripts/prepare-two-tapes echo "${cwd}/build" >/tmp/file-list out="tmp/sed_tmp" echo "s%# Maximum File Size% Maximum File Size%g" >${out} cp ${cwd}/bin/bacula-sd.conf ${cwd}/tmp/1 sed -f ${out} ${cwd}/tmp/1 >${cwd}/bin/bacula-sd.conf echo " " echo " " echo " === Starting Two Volume Tape test at `date +%R:%S` ===" echo " === Starting Two Volume Tape test at `date +%R:%S` ===" >>working/log echo " " bin/bacula start 2>&1 >/dev/null bin/bconsole -c bin/bconsole.conf <&1 >/dev/null @output /dev/null messages @output tmp/log1.out label storage=DDS-4 volume=TestVolume001 slot=1 pool=Default label storage=DDS-4 volume=TestVolume002 slot=2 pool=Default update Volume=TestVolume001 MaxVolBytes=3000000 run job=NightlySave yes wait messages @# @# now do a restore @# @output tmp/log2.out restore where=${cwd}/tmp/bacula-restores select all storage=DDS-4 done yes 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 if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then echo " " echo " " echo " !!!!! Two Volume Tape test Bacula source failed!!! !!!!! " echo " !!!!! Two Volume Tape test failed!!! !!!!! " >>test.out echo " " else echo " ===== Two Volume Tape test Bacula source OK ===== " echo " ===== Two Volume Tape test OK ===== " >>test.out # scripts/cleanup fi