Vault - Pre Eject Notification Mail - NBU 7.1.0.2
Hi all,
i need to know in which step the "Pre Eject Notification Mail" is generated during a vault session because we should inform our operation stuff when they can start with the removal of the tapes from the robot.
At the step when the vault job start with ejecting the media we should inform our operation stuff to remove the tapes according the tape list. The problem is that the report Picking List for Robot was created after the removal of the tapes.
It would be nice if someone can give me a hint. Thanks ...
Regards, Martin
It seems you got it right...
vlt_starteject_notify is run after eject.list is generated, whereas vlt_starteject_notify is before the eject.list.
Is your goal trying to mail the eject.list to the operator, right after the file is available, and before eject processing completes?
The existing vlt_starteject_notify produces a "nicely-formatted" notification to "someone_who_cares" :) , which includes robot#, vault name, profile name & sessionID. If you don't really need this, just replace the whole script with the following line will do:
mail someone@who.cares < /usr/openv/netbackup/vault/sessions/$3/sid$4/eject.list
$3 is profile name
$4 is session ID #
Hope this helps.