/* Copyright (c) Oracle Corporation . All Rights Reserved */ /*************************************************************** NAME jsf.ins DESCRIPTION installation script for jsf OWNER Lin Bin Xu MODIFIED MM/DD/YY Reason kpotter 3/98 version update for 805 EE lxu 05/13/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.5.0.0"; execute("%installer_home%\%operating_system%.ins"); /*** Install any dependent products here... ***/ permit_retry_operations = TRUE; /*** Allow dialogs for file operation failures. ***/ /*** Install the product: copy the necessary groups and subgroups listed in the MAP script. These groups must be represented in the sum() function from the VRF script for size accuracy. ***/ ui_action(instantiate(installing_scripts)); copy(deinstl, nls_abbreviation); ui_action(instantiate(installing_class)); copy(class); ui_action(instantiate(installing_dll)); copy(dll); /*** Modify configuration variables ***/ /* ui_action(instantiate(modifying_variables)); modify(variable, binding, ora_config, delimeter); */ /*** Register Product ***/ ui_product(product_label); ui_action(instantiate(registering_product)); register(current_product); permit_retry_operations = FALSE; /*** Suppress dialogs for file operation failures. ***/ } }