#!/bin/sh # # Run a simple backup of the Bacula build directory # then restore it. # TestName="hardlink-test" JobName=hardlink . scripts/functions if test ! -d weird-files ; then echo " " echo "Weird files not configured. Test not run." exit 0 fi cwd=`pwd` scripts/cleanup scripts/copy-test-confs change_jobname NightlySave $JobName # # Note, we save the weird-files directory twice on purpose # because this causes problems with hard linked files # that are only saved once. In 1.33, Bacula now deals # with this situation. # echo "${cwd}/weird-files" >${cwd}/tmp/file-list echo "${cwd}/weird-files" >>${cwd}/tmp/file-list start_test cat <${cwd}/tmp/bconcmds @$out /dev/null messages @$out ${cwd}/tmp/log1.out label storage=File TestVolume001 run job=$JobName yes wait messages @# @# now do a restore @# @$out ${cwd}/tmp/log2.out setdebug level=200 client=localhost-fd restore where=${cwd}/tmp/bacula-restores storage=File 5 cd ${cwd}/weird-files/subdir mark another-hardlink done yes wait messages quit END_OF_DATA run_bacula check_for_zombie_jobs storage=File stop_bacula check_two_logs diff ${cwd}/weird-files/subdir/another-hardlink \ ${cwd}/tmp/bacula-restores/${cwd}/weird-files/subdir/another-hardlink 2>&1 >/dev/null dstat=$? end_test