Forum Discussion

amcdade's avatar
amcdade
Level 3
12 years ago
Solved

bpstart_notify & bpend_notify for Unix & Linux

I have a Windows master server but also have some Unix clients I want to execute the bpstart_notifiy and bpend_notifiy scripts. Unfortunately I don't have copies of the shell scripts on my master server because it is Windows and it only has copies of the .bat/cmd files.

Coould some kind soul post copies of the vanilla bpstart_notify and bpend_notify Unix shell scripts please? I'd like to avoid completely re-inventing the wheel!

 

Thanks

  • Was looking for these being on the forum already to save attaching afresh & as expected Marianne does not disappoint!

     

    https://www-secure.symantec.com/connect/forums/bpstartnotifybpendnotify-oracle-coldbackup#comment-5399571

     

     

    These are the same versions I have but not sure if they've been updated any recently ......

5 Replies

  • Thanks for that, but I know how to use the scripts, I just want copies of the scripts for Unix, not Windows. Neither of those links is helpful in that regard.

  • Issue



    How to execute custom scripts from bpstart_notify and bpend_notify

     

    Solution



    For UNIX:
    Look for the following lines in your bpstart_notify andbpend_notify scripts and add the absolute path of custom script file as shown below.
     
    <SNIP>
    # --------------------------------------------------------------------
    # main script starts here
    # --------------------------------------------------------------------
    /<custom_script_directory>/custom_script         <---- Add this line, absolute path to your script
    umask 022
    if [ "$#" -ne 5 ]
    then
           exit 1
    fi
    </SNIP>
    taken from 
     
     

    How to execute custom scripts from bpstart_notify and bpend_notify

    Article:TECH52762  |  Created: 2009-01-03  |  Updated: 2009-01-03  |  Article URL http://www.symantec.com/docs/TECH52762

     

  • Was looking for these being on the forum already to save attaching afresh & as expected Marianne does not disappoint!

     

    https://www-secure.symantec.com/connect/forums/bpstartnotifybpendnotify-oracle-coldbackup#comment-5399571

     

     

    These are the same versions I have but not sure if they've been updated any recently ......