Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

nsrclone in Networker 6.0.2

Status
Not open for further replies.

mantab

IS-IT--Management
Apr 22, 2002
12
US
Every week, we have automatic clones that run from customized groups in nwadmin. Over the past 3 weeks, nsrclone is trying to clone volumes that are over a month old. Typically, the SSID's run from a single weekends groups completion and only include those SSID's to clone.
Does anybody know what could be causing this? Is there a saveset.* file that contains these SSID's that may not be getting purged correctly? Any help or assistance would be greatly appreciated.

Thanks!
 
I use a script (Bash, UNIX). The core element of the script is:

SSETS=`mminfo -q "level=full,!incomplete,copies=1,pool=$MPOOL" -r ssid`
This writes all valid savesets withaout clone in the $SSETS variable.
nsrclone -b "$APOOL" -S $SSETS
Does the cloning.

You must set $MPOOL to the name of the pool to be cloned, and $APOOL to the name of the clone Pool.

Have fun
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top