#!/bin/sh # # Run a simple backup of the Bacula build directory using the compressed option # then backup a second time and finally restore it # cwd=`pwd` scripts/copy-test-confs scripts/cleanup echo "${cwd}/build" >/tmp/file-list bin/bacula stop 2>&1 >/dev/null cd bin ./drop_bacula_tables >/dev/null 2>&1 ./make_bacula_tables >/dev/null 2>&1 ./grant_bacula_privileges 2>&1 >/dev/null cd .. echo " " echo " " echo " === Starting two-jobs-test ===" echo " === Starting two-jobs-test ===" >>working/log echo " " bin/bacula start 2>&1 >/dev/null bin/bconsole -c bin/bconsole.conf <&1 >/dev/null grep "^Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null bstat=$? grep "^Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null rstat=$? diff -r build tmp/bacula-restores${cwd}/build 2>&1 >/dev/null if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then echo " " echo " " echo " !!!!! two-jobs-test Bacula source failed!!! !!!!! " echo " !!!!! two-jobs-test failed!!! !!!!! " >>test.out echo " " else echo " ===== two-jobs-test Bacula source OK ===== " echo " ===== two-jobs-test OK ===== " >>test.out scripts/cleanup fi