/* Copyright (c) Oracle Corporation 1997. All Rights Reserved */ /*************************************************************** NAME net80.ins DESCRIPTION Install script for Net8 pseudo-product. OWNER NT SQL*Net Group within Server Technologies MODIFIED MM/DD/YY Reason mmckerle 12/12/97 Explicitly listed child products to ensure successful install of all children 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 = "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. ***/ if(platform() == "nt") { { install(ntnetsrv80); } [ 'DEFAULT: continue(); ] { install(ntcm80); } [ 'DEFAULT: continue(); ] { install(ntnames80); } [ 'DEFAULT: continue(); ] { install(w32netclt80); } [ 'DEFAULT: continue(); ] { install(w32net8a80); } [ 'DEFAULT: continue(); ] } else /* win95 */ { { install(w95netsrv80); } [ 'DEFAULT: continue(); ] { install(w32netclt80); } [ 'DEFAULT: continue(); ] { install(w32net8a80); } [ 'DEFAULT: continue(); ] } } }