On 2 Apr at 9:47 Theodotos Andreou <[EMAIL PROTECTED]> wrote in message
<[EMAIL PROTECTED]>

> Is there a way to tell a Backup job not to start if there is no correct
> label found on the changer? I do not want to use amflush later because
> /amandadumps is too small to host all level 0 images during a monthly
> archival backup.
>

I do this:

----------------------------------------------------
#!/bin/bash
#Check tape, and only run backup if successful

DUMP=HomeDumps

/usr/sbin/amcheck -w $DUMP
if [ $? -eq 0 ]
then
        #retension tape
        mt retension

        #run backup for group
        /usr/sbin/amdump $DUMP

        #verify the tape
        echo Verifying ${DUMP}
        /usr/sbin/amverify $DUMP
else
        echo Failed $DUMP
fi
----------------------------------------------------

Customise to suit...
-- 
Tony van der Hoff        | mailto:[EMAIL PROTECTED]
Buckinghamshire, England 

Reply via email to