#!/bin/sh # # Run a simple backup of the Bacula build directory # then restore it. # if test ! -d weird-files ; then echo " " echo "weird files not configured. Test not run." exit 0 fi cwd=`pwd` scripts/copy-test-confs scripts/cleanup rm -rf weird-files2 cp -Rp weird-files weird-files2 echo "${cwd}/weird-files2" >/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 weird filenames2 test ===" echo " === Starting weird filenames2 test ===" >>working/log echo " " bin/testls weird-files2 >${cwd}/tmp/original bin/bacula start 2>&1 >/dev/null bin/bconsole -c bin/bconsole.conf <&1 >/dev/null bin/testls weird-files2 >${cwd}/tmp/restored 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 ${cwd}/tmp/original ${cwd}/tmp/restored 2>&1 >/dev/null if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then echo " " echo " " echo " !!!!! Weird files2 test failed!!! !!!!! " echo " !!!!! Weird files2 test failed!!! !!!!! " >>test.out echo " " else echo " ===== Weird files2 test OK ===== " echo " ===== Weird files2 test OK ===== " >>test.out cd ${cwd} scripts/cleanup rm -rf weird-files2 fi