home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a525 / 51.ddi / SPX11.INS < prev    next >
Encoding:
Text File  |  1993-03-22  |  1.6 KB  |  48 lines

  1. /*****************************************************************************
  2.   NAME
  3.     spx11.ins - NetWare V3 installation script for SQL*Net SPX.
  4.  
  5.   DESCRIPTION
  6.     This script performs the installation tasks for NetWare SQL*Net SPX.
  7.  
  8.   OWNER
  9.     Tim Kelley
  10.  
  11.   MODIFIED    DD-MMM-YY Reason
  12.     psciarra  02-FEB-93 update 
  13.     vokamura  19-NOV-92 update
  14.     trodgers  31-JAN-92 Created.
  15.     trodgers  27-FEB-92 Split client/server.
  16.     tkelley   06-MAR-92 Copied from OS/2 spxs.ins
  17. *****************************************************************************/
  18. {
  19. /*****************************************************************************
  20.    Start main logic ...
  21. *****************************************************************************/
  22.   if (doit)
  23.   {
  24.     ui_product(product_label);
  25.  
  26.     ui_action(instantiate(net1_install_scripts));
  27.     copy(deinstl);
  28.  
  29.     ui_action(instantiate(net1_install_nlms));
  30.     copy(nlm);
  31.  
  32. /*****************************************************************************
  33.    Set the listener name ...
  34. *****************************************************************************/
  35.     ui_action(instantiate(net1_modify_config));
  36.     modify("ORACLE_SRVNAME","%spxname%","%server%\%ora_config%");
  37.  
  38. /*****************************************************************************
  39.    Register the product ...
  40. *****************************************************************************/
  41.     ui_action(instantiate(net1_register_label));
  42.     register(product);
  43.   }
  44.  
  45.   if (not(internally_called))
  46.     reference(product);
  47. }
  48.