#!/bin/sh # # Run a simple backup of the Bacula build directory # then restore it. # TestName="etc-test-root" . scripts/functions scripts/cleanup scripts/copy-test-confs echo "/etc" >/tmp/file-list start_test cat <tmp/bconcmds @output /dev/null messages @output tmp/log1.out label storage=File TestVolume001 run job=NightlySave yes wait messages @# @# now do a restore @# @output tmp/log2.out restore where=${cwd}/tmp/bacula-restores select unmark * mark * done yes wait messages @output quit END_OF_DATA run_bacula check_for_zombie_jobs storage=File stop_bacula # more cleanup needed below cd / ${cwd}/bin/testls -e ${cwd}/scripts/exclude-etc-test etc >${cwd}/tmp/1 cd ${cwd}/tmp/bacula-restores ${cwd}/bin/testls -e ${cwd}/scripts/exclude-etc-test etc >${cwd}/tmp/2 sort <${cwd}/tmp/1 >${cwd}/tmp/original sort <${cwd}/tmp/2 >${cwd}/tmp/restored rm -f ${cwd}/tmp/1 ${cwd}/tmp/2 cd ${cwd} diff tmp/original tmp/restored 2>&1 1>/dev/null if [ $? != 0 ] ; then echo " " echo " " echo " ===== !!!! etc-test-root failed !!!! ===== " echo " ===== !!!! etc-test-root failed !!!! ===== " >>test.out echo " " else echo " ===== etc-test-root OK ===== " echo " ===== etc-test-root OK ===== " >>test.out scripts/cleanup fi