|
From: Eric J. <eje...@sw...> - 2005-06-10 17:30:59
|
Hi Nik,
Kolev, Nik <NK...@tr...> wrote:
> to restore:
> ## rewind tape just in case
> for d in $DIRS
> restore rvf ${TAPE_NOREWIND} ${d}
> if [ $? != "0" ]; then
> exit 1
> fi
> done
I believe that after the first restore completes, the tape is positioned
at the end of the first file, which is different from the beginning of
the second file. I think if you add something like
mt -f ${TAPE_NOREWIND} fsf 1
after the restore, the tape should then be correctly positioned for the
next restore.
Eric
|