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

  1. /* Copyright (c) Oracle Corporation 1992.  All Rights Reserved */
  2. /*****************************************************************************
  3.   NAME
  4.     util70.ins - NetWare V3 installation script for the ORACLE version 7 utils
  5.  
  6.   DESCRIPTION
  7.     This script installs the ORACLE version 7 utils by copying the appropriate
  8.     files.
  9.  
  10.   OWNER
  11.     Tony Rodgers
  12.  
  13.   MODIFIED    DD-MMM-YY Reason
  14.     kschrait  02/26/93 - Created
  15. *****************************************************************************/
  16. {
  17. /*****************************************************************************
  18.   Start processing ...
  19. *****************************************************************************/
  20.   if (doit)
  21.   {
  22.     ui_product(product_label);
  23.  
  24.     ui_action( instantiate(installing_scripts) );
  25.     copy(deinstl);
  26.  
  27.     ui_action( instantiate(installing_nlms) );
  28.     copy(nlm);
  29.  
  30.     ui_action( instantiate(installing_msbs) );
  31.     copy(msg,nls_abbreviation);
  32.  
  33.     ui_action( instantiate(installing_res) );
  34.     copy(res);
  35.  
  36.     ui_action( instantiate(installing_demo) );
  37.     copy(demo);
  38.  
  39.     ui_action( instantiate(modifying_server_config) );
  40.     modify("RDBMS70",RDBMS70,"%server%/%ora_config%","=");
  41.     modify("API",RDBMS70,"%server%/%ora_config%","=");
  42.     modify("UTILITY_MSG",RDBMS70,"%server%/%ora_config%","=");
  43.     modify("DBA_AUTHORIZATION","BYPASS","%server%/%ora_config%","=");
  44.     modify("NLS_LANG",nls_language,"%server%/%ora_config%","=");
  45.  
  46.     ui_action( instantiate(registering) );
  47.     register(product);
  48.   }
  49.  
  50.   if (not(internally_called))
  51.     reference(product);
  52. }
  53.