cancel
Showing results for 
Search instead for 
Did you mean: 

Duplication script

Amit_Karia
Level 6
HI All,

I have created following script which will ask volume pool and what ever medias are there in robot it will start duplication , some how it is failling with error 191 .. please check and let me know if any modification is required


if [ $# -eq 0 ]; then
        echo "Pl. Enter Pool  Name... "
        exit
fi
a=`vmquery -b -pn $1 | grep TLD | awk '{print $1}'`
echo $a
bpduplicate -id $a -dstunit <dest_unit_name> -dp <vmpool>


3 REPLIES 3

scorpy_582
Level 6
Hopefully this answers your question:

http://seer.entsupport.symantec.com/docs/256908.htm

Try using the -s switch in your command.

Amit_Karia
Level 6
Thanks yeah made the same modification and it worked for me..,by default it was taking 24 hours..t

Shashank
Level 4
Thanks Scorpy it also help me.