#!/bin/sh # # Run a simple backup of the Bacula build directory then create some # new files, do an Incremental and restore those two files. # # This script uses the autochanger and two tapes # TestName="incremental-changer" JobName=incrementalchanger . scripts/functions require_tape_drive require_autochanger scripts/cleanup scripts/copy-2tape-confs scripts/prepare-two-tapes echo "${cwd}/tmp/build" >${cwd}/tmp/file-list if test ! -d ${cwd}/tmp/build ; then mkdir -p ${cwd}/tmp/build fi cp -p ${cwd}/build/src/dird/*.c ${cwd}/tmp/build cd ${cwd}/tmp echo "${cwd}/tmp/build/ficheriro1.txt" >restore-list echo "${cwd}/tmp/build/ficheriro2.txt" >>restore-list cd ${cwd} start_test # Write out bconsole commands cat <${cwd}/tmp/bconcmds @$out /dev/null messages @$out ${cwd}/tmp/log1.out label storage=tape volume=TestVolume001 slot=$SLOT1 Pool=Default drive=$DRIVE1 label storage=tape volume=TestVolume002 slot=$SLOT2 Pool=Default drive=$DRIVE1 run job=NightlySave yes wait messages quit END_OF_DATA run_bacula echo "ficheriro1.txt" >${cwd}/tmp/build/ficheriro1.txt echo "ficheriro2.txt" >${cwd}/tmp/build/ficheriro2.txt cat <${cwd}/tmp/bconcmds @$out /dev/null messages @$out ${cwd}/tmp/log1.out @# Force Incremental on the second Volume update volume=TestVolume001 VolStatus=Used run level=Incremental job=NightlySave yes wait messages @# @# now do a restore @# @$out ${cwd}/tmp/log2.out restore where=${cwd}/tmp/bacula-restores 7 <${cwd}/tmp/restore-list yes wait messages quit END_OF_DATA run_bconsole check_for_zombie_jobs storage=tape stop_bacula check_two_logs rstat=$? # # Delete .c files because we will only restored the txt files # rm -f ${cwd}/tmp/build/*.c check_restore_tmp_build_diff end_test