/* Copyright (c) Oracle Corporation 1997. All Rights Reserved */ /*************************************************************** NAME adp80.ins DESCRIPTION Install script for Oracle Protocol Adapter pseudo-product. OWNER NT SQL*Net Group within Server Technologies MODIFIED MM/DD/YY Reason mmckerle 08/20/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, guaranteeing a match between VRF and INS version numbers. ***/ ins_ratchet = "8.0.4.0.0"; execute("%installer_home%\%operating_system%.ins"); /*** Install any dependent products here... ***/ permit_retry_operations = FALSE; /*** Suppress dialogs for file operation failures. ***/ /* Force install the appropriate adapters LU6.2 will only be installable through custom */ if(install_tcp) install(tcp_prod); if(install_spx) install(spx_prod); if(install_nmp) /* For this release, this will always happen */ install(nmp_prod); } }