3 # Run a simple backup of the Bacula build directory. Create three
4 # tapes, each in a different pool, then run two jobs both of which
5 # want the disk that is not loaded. Note, they both have
6 # prefers non-mounted tapes. This should expose bug #801
8 # This script uses the virtual disk autochanger and two drives
10 TestName="virtual-changer-disk"
11 JobName="virtualchangerdisk"
15 scripts/copy-2disk-drive-confs
16 scripts/prepare-two-disks
20 echo "${cwd}/build" >${cwd}/tmp/file-list
21 #change_jobname Virtual $JobName
24 # Turn off Prefer Mounted Volumes so we use 2 drives
25 outf="${cwd}/tmp/sed_tmp"
26 echo "s%# Prefer Mounted Volumes% Prefer Mounted Volumes%g" >${outf}
27 cp ${cwd}/bin/bacula-dir.conf ${cwd}/tmp/1
28 # Comment the next line out to write everything to one drive
29 # otherwise, it writes the two jobs to different drives
30 sed -f ${outf} ${cwd}/tmp/1 >${cwd}/bin/bacula-dir.conf
32 # Write out bconsole commands
33 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
36 @$out ${cwd}/tmp/log1.out
37 setdebug level=200 storage=Virtual
38 @#setdebug level=200 client=$CLIENT
39 label storage=Virtual volume=TestVolume001 slot=1 Pool=Default drive=0
40 label storage=Virtual volume=TestVolume002 slot=2 Pool=Full drive=0
41 label storage=Virtual volume=TestVolume003 slot=3 Pool=Inc drive=1
42 status storage=Virtual
43 run job=Virtual level=Full Pool=Default yes
44 run job=Virtual level=Full Pool=Default yes
45 run job=Virtual level=Full Pool=Default yes
46 run job=Virtual level=Full Pool=Default yes
47 run job=Virtual level=Full Pool=Default yes
49 status storage=Virtual
54 status storage=Virtual
62 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
68 @$out ${cwd}/tmp/log2.out
69 restore where=${cwd}/tmp/bacula-restores select all storage=Virtual done
79 check_for_zombie_jobs storage=Virtual