/* Copyright (c) Oracle Corporation 1997. All Rights Reserved */ /*************************************************************** NAME net23.ins DESCRIPTION Install script for Oracle Networking pseudo-product. OWNER NT SQL*Net Group within Server Technologies MODIFIED MM/DD/YY Reason nevans 05/30/97 Created. ****************************************************************/ { /*** The doit variable is set by the %os%.vrf script, indicating whether installation should proceed. The body of this script is enclosed within this "if" statement. ***/ if(doit) { /*** Set the INS script ratchet variable and call the %os%.ins script, guaranteeing a match between VRF and INS version numbers. ***/ ins_ratchet = "2.3.4.0.2"; execute("%installer_home%\%operating_system%.ins"); /*** Install any dependent products here... ***/ permit_retry_operations = FALSE; /*** Suppress dialogs for file operation failures. ***/ /*** NT installs SQL*Net Server, Oracle Names Server, and SQL*Net Client (Adapters autodetected by client) Windows 95 installs SQL*Net Client (Adapters will be autodetected) ***/ if (platform() == "nt") { { install(ntnetsrv23); } [ 'DEFAULT: continue(); ] { install(w32netclt23); } [ 'DEFAULT: continue(); ] { install(ntnames20); } [ 'DEFAULT: continue(); ] } else /* win95 */ { { install(w95netsrv23); } [ 'DEFAULT: continue(); ] { install(w32netclt23); } [ 'DEFAULT: continue(); ] } } }