Add more info to 064.full which checks to see that the

set of files for incremental dumping have been modified
like they are supposed to.
Added to help in tracking down some sporadic 064 failures.
This commit is contained in:
Tim Shimmin
2002-03-19 04:59:21 +00:00
parent 1ea6225e60
commit cadd733b68
+10
View File
@@ -78,6 +78,16 @@ while [ $i -le 9 ]; do
sleep 2
_stable_fs
fi
echo "********* level $i ***********" >>$seq.full
date >>$seq.full
find $SCRATCH_MNT -exec stat {} \; >$tmp.dates.$i
if [ $i -gt 0 ]; then
level_1=`expr $i - 1`
diff -c $tmp.dates.$level_1 $tmp.dates.$i >>$seq.full
else
cat $tmp.dates.$i >>$seq.full
fi
dump_file=$tmp.df.level$i
_do_dump_file -l $i
i=`expr $i + 1`