3 # Run a simple backup of the Bacula build directory then create some
4 # new files, do an Incremental and restore those two files.
6 # This script uses the autochanger and two drives
8 TestName="2drive-incremental-changer"
16 scripts/copy-2drive-confs
17 scripts/cleanup-2drive
19 change_jobname localhost-fd $JobName
21 echo "${cwd}/tmp/build" >${cwd}/tmp/file-list
22 if test ! -d ${cwd}/tmp/build ; then
23 mkdir -p ${cwd}/tmp/build
25 cp -p ${cwd}/build/src/dird/*.c ${cwd}/tmp/build
27 echo "${cwd}/tmp/build/ficheriro1.txt" >restore-list
28 echo "${cwd}/tmp/build/ficheriro2.txt" >>restore-list
31 # Turn off Prefer Mounted Volumes so we use 2 drives
32 outf="${cwd}/tmp/sed_tmp"
33 echo "s%# Prefer Mounted Volumes% Prefer Mounted Volumes%g" >${outf}
34 cp ${cwd}/bin/bacula-dir.conf ${cwd}/tmp/1
35 # Comment the next line out to write everything to one drive
36 # otherwise, it writes the two jobs to different drives
37 sed -f ${outf} ${cwd}/tmp/1 >${cwd}/bin/bacula-dir.conf
41 # Write out bconsole commands
42 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
45 @$out ${cwd}/tmp/log1.out
46 label storage=tape volume=TestVolume001 slot=$SLOT1 Pool=Default drive=$DRIVE1
47 label storage=tape volume=TestVolume002 slot=$SLOT2 Pool=Default drive=$DRIVE2
48 @#setdebug level=100 storage=tape
49 run job=NightlySave yes
50 run job=NightlySave yes
51 run job=NightlySave yes
52 run job=NightlySave yes
53 run job=NightlySave yes
66 echo "ficheriro1.txt" >${cwd}/tmp/build/ficheriro1.txt
67 echo "ficheriro2.txt" >${cwd}/tmp/build/ficheriro2.txt
69 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
72 @$out ${cwd}/tmp/log1.out
73 @# Force Incremental on the second Volume
74 update volume=TestVolume001 VolStatus=Used
76 @#setdebug level=400 storage=tape
77 run level=Incremental job=NightlySave yes
85 @$out ${cwd}/tmp/log2.out
86 restore where=${cwd}/tmp/bacula-restores
88 <${cwd}/tmp/restore-list
97 check_for_zombie_jobs storage=tape
102 # Delete .c files because we will only restored the txt files
104 rm -f ${cwd}/tmp/build/*.c
105 check_restore_tmp_build_diff