home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a525 / 45.ddi / WINDOWS.ZOO < prev   
Encoding:
Text File  |  1992-12-08  |  3.2 KB  |  73 lines

  1. /* Copyright (c) Oracle Corporation 1992.  All Rights Reserved */
  2.  
  3. /*****************************************************************************
  4.   NAME
  5.     windows7.zoo - Windows V3 Installation Environment Initialization File
  6.                    for V7 Oracle products
  7.  
  8.   DESCRIPTION
  9.    This script bootstraps the Windows environment for the installation
  10.    of Oracle V7 products. It is always read first by ORAINST for Windows.
  11.  
  12.   MODIFIED   MM/DD/YY REASON
  13.     jicohen  10/26/92 Added windows_sys_dir and windows_dir
  14.     ekabatch 07/21/92 Added deinstall prompts.  Removed environment out of
  15.                       date prompt.
  16.     ekabatch 06/19/92 Renamed registry.prd to windows.rgs.
  17.     ekabatch 05/29/92 Accomodated OS_ERROR on translate.
  18.     ekabatch 04/15/92 Accomodate installer_home change: ORACLE_HOME\orainst.
  19.     ekabatch 02/18/92 Moved registry.prd to install subdirectory.
  20.     ekabatch 01/27/92 Formatted code to Oracle Coding Standards.
  21.     trodgers 01/26/92 Added resinstall prompts.
  22.     ekabatch 03/22/92 Created.
  23. *****************************************************************************/
  24.  
  25. {
  26.   /* Let the installer know that this is not a bootstrapping sequence. */
  27.  
  28.   bootstrap = FALSE;
  29.  
  30.   /* Indicate that the installer is not being run from distribution media. */
  31.  
  32.   distribution = FALSE;
  33.  
  34.   windows_dir = windows_directory();
  35.   windows_sys_dir = windows_system_directory();
  36.  
  37.   /* The environment has already been set up, so 'config' and 'oracle_home'
  38.      should be readily available. */
  39.  
  40.   {
  41.     {
  42.       ora_config = v7_translate("ORA_CONFIG");
  43.  
  44.       oracle_home = v7_translate("ORACLE_HOME"); pathify(oracle_home);
  45.     }
  46.       ['OS_ERROR: signal('UNBOUND_ENVIRONMENT_VARIABLE); ]
  47.  
  48.     /* Is everything there? */
  49.  
  50.     if (not(exists("%oracle_home%\bin")) ||
  51.         not(exists("%oracle_home%\dbs")) ||
  52.         not(exists("%oracle_home%\orainst")) ||
  53.         not(exists("%oracle_home%\orainst\windows.rgs")))
  54.       signal('UNBOUND_ENVIRONMENT_VARIABLE);
  55.   }
  56.     ['UNBOUND_ENVIRONMENT_VARIABLE: signal('failure,"The ORACLE installation files need to be updated. To do this, you must run ORAINST from a distribution diskette or from CD-ROM."); ]
  57.  
  58.   {
  59.     nls_lang = v7_translate("NLS_LANG");
  60.   }
  61.     ['UNBOUND_ENVIRONMENT_VARIABLE: continue(); ]
  62.  
  63.   reinstall_prompt01 = "The currently installed version of %%product_label%%, %%installed_version%%, is out of date. The currently available version is %%current_version%%. Do you wish to update %%product_label%%?";
  64.  
  65.   reinstall_prompt02 = "WARNING: Not installing the currently available version of %%product_label%%, %%current_version%%, may cause other Oracle products to work improperly.";
  66.  
  67.   reinstall_prompt03 = "WARNING: The currently installed version of %%product_label%% is %%installed_version%%. Are you sure you want to install the old version, %%current_version%%?  Doing so may cause other Oracle products to work improperly.";
  68.  
  69.   reinstall_prompt04 = "Version %%installed_version%% of %%product_label%% has already been installed. Would you like to reinstall it?";
  70.  
  71.   deinstall_prompt01 = "WARNING: Other products are dependent on %%registry_label%%. Are you sure you want to deinstall it?";
  72. }
  73.