home *** CD-ROM | disk | FTP | other *** search
/ Oracle Video Server 3.0.3.1 / OVS_3031_NT.iso / win32 / sqlnet / net23 / net23.ins < prev    next >
Encoding:
Text File  |  1997-08-20  |  1.7 KB  |  61 lines

  1. /* Copyright (c) Oracle Corporation 1997.  All Rights Reserved */
  2. /***************************************************************
  3.  NAME
  4.         net23.ins
  5.  
  6.  DESCRIPTION
  7.         Install script for Oracle Networking pseudo-product.
  8.  
  9.  OWNER
  10.         NT SQL*Net Group within Server Technologies
  11.  
  12.  MODIFIED       MM/DD/YY        Reason
  13.   nevans        05/30/97        Created.
  14. ****************************************************************/
  15.  
  16. {
  17.    /*** The doit variable is set by the %os%.vrf script, indicating whether installation should proceed.
  18.         The body of this script is enclosed within this "if" statement. ***/
  19.    if(doit)
  20.    {
  21.       /*** Set the INS script ratchet variable and call the %os%.ins script,
  22.            guaranteeing a match between VRF and INS version numbers. ***/
  23.  
  24.       ins_ratchet = "2.3.4.0.0";
  25.       execute("%installer_home%\%operating_system%.ins");
  26.  
  27.       /*** Install any dependent products here... ***/
  28.  
  29.       permit_retry_operations = FALSE;  /*** Suppress dialogs for file operation failures. ***/
  30.  
  31.  
  32.       /*** NT installs SQL*Net Server, Oracle Names Server, and SQL*Net Client (Adapters autodetected by client)
  33.            Windows 95 installs SQL*Net Client (Adapters will be autodetected) ***/
  34.       if (platform() == "nt")
  35.       {
  36.          {
  37.             install(ntnetsrv23);
  38.          }
  39.          [ 'DEFAULT: continue(); ]
  40.  
  41.          {
  42.             install(w32netclt23);
  43.          }
  44.          [ 'DEFAULT: continue(); ]
  45.  
  46.          {
  47.             install(ntnames20);
  48.          }
  49.          [ 'DEFAULT: continue(); ]
  50.       }
  51.       else   /* win95 */
  52.       {
  53.          {
  54.             install(w32netclt23);
  55.          }
  56.          [ 'DEFAULT: continue(); ]
  57.  
  58.       }
  59.    }
  60. }
  61.