3 # Run a simple backup of the Bacula build directory then create some
4 # new files, do a Decremental and restore those two files.
7 scripts/copy-test-confs
9 echo "${cwd}/tmp/build" >/tmp/file-list
10 mkdir ${cwd}/tmp/build
11 cp -p ${cwd}/build/src/dird/*.c ${cwd}/tmp/build
13 echo "${cwd}/tmp/build/ficheriro1.txt" >restore-list
14 echo "${cwd}/tmp/build/ficheriro2.txt" >>restore-list
16 bin/bacula stop 2>&1 >/dev/null
18 ./drop_bacula_tables >/dev/null 2>&1
19 ./make_bacula_tables >/dev/null 2>&1
20 ./grant_bacula_privileges 2>&1 >/dev/null
25 echo " === Starting decremental-test ==="
26 echo " === Starting decremental-test ===" >>working/log
29 bin/bacula start 2>&1 >/dev/null
30 bin/bconsole -c bin/bconsole.conf <<END_OF_DATA
34 label storage=File volume=TestVolume001
35 label storage=File volume=TestVolume002
36 run job=CompressedTest yes
41 scripts/check_for_zombie_jobs storage=File
42 echo "ficheriro1.txt" >${cwd}/tmp/build/ficheriro1.txt
43 echo "ficheriro2.txt" >${cwd}/tmp/build/ficheriro2.txt
44 bin/bconsole -c bin/bconsole.conf <<END_OF_DATA
48 @# Force decremental on the second Volume
49 update volume=TestVolume001 VolStatus=Used
50 run level=decremental job=CompressedTest yes
55 scripts/check_for_zombie_jobs storage=File
56 echo "ficheriro2.txt" >${cwd}/tmp/build/ficheriro2.txt
57 bin/bconsole -c bin/bconsole.conf <<END_OF_DATA
61 run level=incremental job=CompressedTest yes
68 restore where=${cwd}/tmp/bacula-restores storage=File file=<${cwd}/tmp/restore-list
75 scripts/check_for_zombie_jobs storage=File
76 bin/bacula stop 2>&1 >/dev/null
77 grep "^Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null
79 grep "^Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null
82 # Delete .c files because we will only restored the txt files
85 diff -r tmp/build tmp/bacula-restores${cwd}/tmp/build 2>&1 >/dev/null
86 if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
89 echo " !!!!! decremental-test Bacula source failed!!! !!!!! "
90 echo " !!!!! decremental-test failed!!! !!!!! " >>test.out
93 echo " ===== decremental-test Bacula source OK ===== "
94 echo " ===== decremental-test OK ===== " >>test.out