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 virtual disk autochanger and two drives
8 TestName="2drive-incremental-2disk"
13 scripts/copy-2disk-drive-confs
14 scripts/prepare-disk-changer
17 change_jobname localhost-fd $JobName
20 echo "${cwd}/tmp/build" >${cwd}/tmp/file-list
21 if test ! -d ${cwd}/tmp/build ; then
22 mkdir -p ${cwd}/tmp/build
24 cp -p ${cwd}/build/src/dird/*.c ${cwd}/tmp/build
26 echo "${cwd}/tmp/build/ficheriro1.txt" >restore-list
27 echo "${cwd}/tmp/build/ficheriro2.txt" >>restore-list
30 # Turn off Prefer Mounted Volumes so we use 2 drives
31 outf="${cwd}/tmp/sed_tmp"
32 echo "s%# Prefer Mounted Volumes% Prefer Mounted Volumes%g" >${outf}
33 cp ${cwd}/bin/bacula-dir.conf ${cwd}/tmp/1
34 # Comment the next line out to write everything to one drive
35 # otherwise, it writes the two jobs to different drives
36 sed -f ${outf} ${cwd}/tmp/1 >${cwd}/bin/bacula-dir.conf
38 # Write out bconsole commands
39 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
42 @$out ${cwd}/tmp/log1.out
44 setdebug level=3 storage=tape
45 setdebug level=3 client=2drive2disk
46 label storage=tape volume=TestVolume001 slot=1 Pool=Default drive=0
47 label storage=tape volume=TestVolume002 slot=2 Pool=Default drive=1
49 setdebug level=200 storage=tape
50 run job=NightlySave yes
51 run job=NightlySave yes
52 run job=NightlySave yes
53 run job=NightlySave yes
54 run job=NightlySave yes
69 echo "ficheriro1.txt" >${cwd}/tmp/build/ficheriro1.txt
70 echo "ficheriro2.txt" >${cwd}/tmp/build/ficheriro2.txt
73 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
76 @$out ${cwd}/tmp/log1.out
77 @# Force Incremental on the second Volume
78 update volume=TestVolume001 VolStatus=Used
81 @#setdebug level=120 storage=tape
82 run level=Incremental job=NightlySave yes
90 @$out ${cwd}/tmp/log2.out
91 restore where=${cwd}/tmp/bacula-restores
93 <${cwd}/tmp/restore-list
103 check_for_zombie_jobs storage=tape
108 # The restore should read from TestVolume002, which was on drive 1
109 grep TestVolume002 ${cwd}/tmp/log2.out >/dev/null 2>&1
110 # Note rstat may already be set, so we don't just store into it
111 if [ $? != 0 ] ; then
116 # Delete .c files because we will only restored the txt files
118 rm -f ${cwd}/tmp/build/*.c
119 check_restore_tmp_build_diff