#!/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. # TestName="two-volume-tape" JobName=twovoltape . scripts/functions set_debug 0 . config.out if test x${AUTOCHANGER} = x/dev/null ; then echo "two-volume-tape test skipped. No autochanger." exit fi scripts/cleanup scripts/copy-2tape-confs scripts/prepare-two-tapes echo "${cwd}/build" >/tmp/file-list outf="tmp/sed_tmp" echo "s%# Maximum File Size% Maximum File Size%g" >${outf} cp ${cwd}/bin/bacula-sd.conf ${cwd}/tmp/1 sed -f ${outf} ${cwd}/tmp/1 >${cwd}/bin/bacula-sd.conf change_jobname $JobName start_test # Write out bconsole commands cat <tmp/bconcmds @$out /dev/null messages @$out tmp/log1.out label storage=DDS-4 volume=TestVolume001 slot=1 pool=Default drive=0 label storage=DDS-4 volume=TestVolume002 slot=2 pool=Default drive=0 update Volume=TestVolume001 MaxVolBytes=3000000 pool=Default drive=0 @#setdebug level=1000 client run job=$JobName yes wait messages @# @# now do a restore @# @$out tmp/log2.out restore where=${cwd}/tmp/bacula-restores select all storage=DDS-4 done yes wait messages @$out quit END_OF_DATA run_bacula check_for_zombie_jobs storage=DDS-4 stop_bacula check_two_logs check_restore_diff end_test