/* Copyright (c) Oracle Corporation 1996. All Rights Reserved */ /***************************************************************************** NAME rss60.vrf - V3 analysis/product configuration script for Oracle Report 6.0 Runtime DESCRIPTION This script checks dependencies and environment settings for the installation of Oracle Report 6.5 Reports Security Server *****************************************************************************/ { {doit = execute("%installer_home%%dir_separator%%operating_system%.vrf");} [ 'UNBOUND_VARIABLE: { required_version = product_version(instver_product); temp = explode(required_version, "."); required_version = implode(list(first(temp),first(rest(temp)), first(rest(rest(temp))), first(rest(rest(rest(temp))))), "."); signal('FAILURE, instantiate(nls("instver_too_early1", "The version of the Installer currently running is %%installer_version%%. The installation you have chosen requires version %%required_version%% or later. Please run version %%required_version%% or later in order to perform this installation."))); } ] /*********************** START MAIN LOGIC *************************/ if (doit) { /****************************************************************/ /***************************** Set the VRF-INS script ratchet ******************************/ vrf_ratchet = "6.0.0.0.1"; /************************************************ Create a label with the product name, and version *************************************************/ EXECUTE_SCRIPT = "CREATE_LABEL"; execute("%product_home%%dir_separator%d2kr2vrf.usr"); /************************************************/ /*********************** Create Dependencies List ************************/ dependency_list = list(w32netclt80,w32net8a80, w32plus80); verify_dependency_list = list(w32netclt80, w32net8a80, w32plus80); install_dependency_list = list(w32netclt80, w32net8a80, w32plus80); /***********************/ /******************************************************************** Initialize total size of files *********************************************************************/ total_sum = 0; /************************** Determine installation path ***************************/ install_variable = "RW60"; default_home = "%oracle_home%%dir_separator%REPORT60"; RW60 = execute("%product_home%%dir_separator%instloc.usr"); TOOLS_HOME = "%ORACLE_HOME%%dir_separator%TOOLS"; DOC60 = "%TOOLS_HOME%%dir_separator%DOC60"; /**************************/ /* Setting SQLPATH */ { set_sqlpath = FALSE; sqlpath = translate("SQLPATH", "$oracle"); if (not(exists(sqlpath))) signal('UNBOUND_ENVIRONMENT_VARIABLE); else { if(not(contains(sqlpath,"%ORACLE_HOME%\bin"))) { sqlpath = "%sqlpath%;%ORACLE_HOME%\bin"; set_sqlpath = TRUE; } if(not(contains(sqlpath,"%ORACLE_HOME%\report60\server\security"))) { sqlpath = "%sqlpath%;%ORACLE_HOME%\report60\server\security"; set_sqlpath = TRUE; } } } [ 'OS_ERROR, 'INVALID_FILE_NAME, 'FILE_NOT_FOUND, 'PERMISSION_DENIED, 'UNBOUND_ENVIRONMENT_VARIABLE: { sqlpath = "%ORACLE_HOME%\dbs;%ORACLE_HOME%\bin;%ORACLE_HOME%\report60\server\security"; set_sqlpath = true; } ] /****************************************************************** child_in_control = TRUE ==> component product called explicitly child_in_control = FALSE ==> component product called by the PARENT *******************************************************************/ child_in_control = TRUE; if( member(products_for_installation, product_parent(current_product) )) child_in_control = FALSE; /**********************************************************************/ /********************************* Verify PARENT if explicitly called **********************************/ install_parent = FALSE; if(child_in_control) { EXECUTE_SCRIPT = "VERIFY_PARENT"; install_parent = execute("%product_home%%dir_separator%d2kr2vrf.usr"); } if(install_parent) total_sum = total_sum + verify(product_parent(current_product)); /*********************************/ /****************** Verify Dependencies *******************/ EXECUTE_SCRIPT = "VERIFY_DEPENDENCIES"; total_sum = total_sum + execute("%product_home%%dir_separator%d2kr2vrf.usr"); total_sum = total_sum + sum(deinst, plb, sql); return(total_sum); /********************************************************************/ } else { refresh_map_file = FALSE; return(0); } }