#!/bin/sh # # Run a simple backup of the Bacula build directory # then verify the catalog. # cwd=`pwd` scripts/copy-test-confs scripts/cleanup echo "${cwd}/build" >/tmp/file-list bin/bacula stop 2>&1 >/dev/null bin/drop_sqlite_tables bin/make_sqlite_tables echo " " echo " " echo " === Starting verify Volume Test ===" echo " === Starting verify Volume Test ===" >>working/log echo " " bin/bacula start 2>&1 >/dev/null bin/console -c bin/console.conf <&1 >/dev/null grep "^Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null bstat=$? grep "^Termination: *Verify OK" ${cwd}/tmp/original 2>&1 >/dev/null if [ $? != 0 -o $bstat != 0 ] ; then echo " " echo " " echo " ===== Verify Volume failed!!! ===== " echo " ===== Verify Volume failed!!! ===== " >>test.out echo " " else echo " ===== Verify Volume Test OK ===== " echo " ===== Verify Volume Test OK ===== " >>test.out scripts/cleanup fi