home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a525 / 26.ddi / DOS.ZOO < prev    next >
Encoding:
Text File  |  1993-02-19  |  7.5 KB  |  135 lines

  1. /* Copyright (c) Oracle Corporation 1992.  All Rights Reserved */
  2.  
  3. /*****************************************************************************
  4.   NAME
  5.     dos.zoo - DOS V3 Installation Environment Initialization File for V7
  6.           Oracle products
  7.  
  8.   DESCRIPTION
  9.     This script verifies the DOS environment for the installation of Oracle
  10.     process. It is always read first by ORAINST for DOS.
  11.  
  12.   OWNER
  13.     Kush Deepak Jain
  14.  
  15.   MODIFIED   MM/DD/YY REASON
  16.     kjain    01/29/93 Added deinstall prompts.Removed environment out of
  17.               date prompt.
  18.     kjain    11/03/92 Ported new os2.stp. Added boot_drive.
  19.     jicohen  07/23/92 Added deinstall prompts.    Removed environment out of
  20.               date prompt.
  21.     jicohen  07/23/92 Renamed registry.prd to os2.rgs.
  22.     jicohen  07/23/92 Accomodated OS_ERROR on translate.
  23.     jicohen  07/23/92 Accomodated installer_home change: ORACLE_HOME\orainst.
  24.     ekabatch 02/18/92 Moved registry.prd to install subdirectory.
  25.     ekabatch 01/27/92 Formatted code to Oracle Coding Standards.
  26.     ekabatch 01/26/92 Added resinstall prompts.
  27.     ekabatch 01/20/92 Added logic to handle the case where the user forgets
  28.               to reboot.
  29.     tkelley  01/09/92 Added DR-DOS compatibility: HIBUFFERS.
  30.     ekabatch 12/11/91 Created.
  31. *****************************************************************************/
  32.  
  33. {
  34.   ui_product(nls("check_environment","Checking the Environment..."));
  35.  
  36.   ui_action(nls("put_in_product_disk","Now is a Great Time to Put in A Product Disk!"));
  37.  
  38.  
  39.   /* Let the installer know that this is not a bootstrapping sequence. */
  40.  
  41.   bootstrap = FALSE;
  42.  
  43.   /* Indicate that the installer is not being run from distribution media. */
  44.  
  45.   distribution = FALSE;
  46.  
  47.   /* The environment has already been set up, so 'config' and 'oracle_home'
  48.      should be readily available. */
  49.  
  50.   {
  51.     nls_language = default_language();
  52.  
  53.     { the_customer_name = customer_name(); }
  54.        [ 'UNKNOWN_CUSTOMER: signal('UNBOUND_ENVIRONMENT_VARIABLE); ]
  55.  
  56.     {
  57.       v6_oracle_home = v6_translate("%%ORACLE_HOME%%");
  58.       pathify(v6_oracle_home);
  59.  
  60.       oracle_home = v7_translate("oracle_home"); pathify(oracle_home);
  61.  
  62.       ora_config = v6_translate("%%CONFIG%%");
  63.  
  64.       if (v6_oracle_home != oracle_home)
  65.     signal('UNBOUND_ENVIRONMENT_VARIABLE);
  66.     }
  67.       ['OS_ERROR: signal('UNBOUND_ENVIRONMENT_VARIABLE); ]
  68.  
  69.     /* Is everything there? */
  70.  
  71.     if (not(exists("%oracle_home%\xbin")) ||
  72.     not(exists("%oracle_home%\dbs")) ||
  73.     not(exists("%oracle_home%\orainst")) ||
  74.     not(exists("%oracle_home%\orainst\dos.rgs")))
  75.       signal('UNBOUND_ENVIRONMENT_VARIABLE);
  76.  
  77.       { 
  78.        machine_type = machine_type;  /* Bound in bootstrap process */
  79.        machine_type = "%machine_type%";
  80.        modify("MACHINE_TYPE",machine_type,"%oracle_home%\xbin\config.ora","=");
  81.       }
  82.        [ 'UNBOUND_VARIABLE: continue(); ]
  83.  
  84. }
  85.   /* Bind global prompt strings. */
  86.  
  87.     ['UNBOUND_ENVIRONMENT_VARIABLE: signal('FAILURE,nls("installation_corrupted","This installation of Oracle needs to be corrected. To do this, you must run the Oracle Installer from a distribution diskette or from CD-ROM.")); ]
  88.  
  89.   reinstall_prompt01 = nls("reinstall_prompt01","The currently installed version of %%product_label%%, %%installed_version%%, is out of date. The most current version is %%current_version%%. Do you wish to update %%product_label%%?");
  90.  
  91.   reinstall_content01 = nls("reinstall_content01","Update");
  92.  
  93.   reinstall_help01 = nls("reinstall_help01","The currently installed version of %%product_label%%, %%installed_version%%, is out of date. The most current version is %%current_version%%. It is recommended that you update %%product_label%% to the newer version, %%current_version%%. Choose 'Yes' to update %%product_label%% to %%current_version%%. Choose 'No' if you are sure you want to keep the installed version, %%installed_version%%, intact.");
  94.  
  95.   reinstall_prompt02 = nls("reinstall_prompt02","WARNING: Not installing the latest version of %%product_label%%, %%current_version%%, may cause other Oracle products to work improperly.");
  96.  
  97.   reinstall_content02 = nls("reinstall_content02","Necessary Update");
  98.  
  99.   reinstall_help02 = nls("reinstall_help02","You are in the process of installing Oracle products which depend on version %%current_version%% of %%product_label%%. It is therefore recommended that you update %%product_label%% to %%current_version%%. You have chosen not to do so so, which may cause certain Oracle products to work improperly.");
  100.  
  101.   reinstall_prompt03 = nls("reinstall_prompt03","WARNING: The currently installed version of %%product_label%%, %%installed_version%%, is up to date. Are you sure you want to install the old version, %%current_version%%?  Doing so may cause other Oracle products to work improperly.");
  102.  
  103.   reinstall_content03 = nls("reinstall_content03","Old Version");
  104.  
  105.   reinstall_help03 = nls("reinstall_help03","You are attempting to install an older version of %%product_label%%, %%current_version%%, although version %%installed_version%% is already installed. Installing an older version of %%product_label%% may cause other Oracle products to work improperly. Choose 'No' to leave the current version of %%product_label%%, %%installed_version%%, intact. Choose 'Yes' if you are sure you want to replace it with version %%current_version%%.");
  106.  
  107.   reinstall_prompt04 = nls("reinstall_prompt04","Version %%installed_version%% of %%product_label%% has already been installed and is up to date. Would you like to reinstall it?");
  108.  
  109.   reinstall_content04 = nls("reinstall_content04","Up To Date");
  110.  
  111.   reinstall_help04 = nls("reinstall_help04","Version %%installed_version%% of %%product_label%% has already been installed and is up to date. There is no need to reinstall %%product_label%% unless the installation has somehow become damaged. Choose 'No' to skip the reinstallation of %%product_label%%. Choose 'Yes' if you are sure you want to reinstall it.");
  112.  
  113.   deinstall_prompt01 = nls("deinstall_prompt01","WARNING: Other products are dependent on %%registry_label%%. Removing it may cause other products to work improperly. Are you sure you want to deinstall it?");
  114.  
  115.   deinstall_content01 = nls("deinstall_content01","Dependencies");
  116.  
  117.   deinstall_help01 = nls("deinstall_help01","Other products are dependent on %%registry_label%%. Removing it may cause them to work improperly. It is therefore recommended that you do not remove %%registry_label%%. Choose 'No' to leave %%registry_label%% intact. Choose 'Yes' if you are sure you want to remove it.");
  118.  
  119.   protected = "Protected Mode";
  120.   real = "Real Mode";
  121.  
  122.   mode_list    = list(protected,real);
  123.   mode_prompt01 = nls("mode_prompt","Please select which executables you wish to install. You may select either one or both modes:");
  124.   mode_content01 = nls("mode_content01","Modes");
  125.   mode_help01     = nls("mode_help01","Many ORACLE Tools are capable of running in both protected mode and real mode. Protected mode tools exploit memory configurations above and beyond the conventional 640K DOS memory model. You should choose to install protected mode executables unless you do NOT have extended memory. You should choose to install real mode executables if you wish to run a tool in conventional memory. If you are unsure, you may choose to install both modes.");
  126.   dos_stub_name = "%oracle_home%\XBIN\ORASTUB.COM";
  127.   {dos_stub_size = size(dos_stub_name);}
  128.      [ 'OS_ERROR:dos_stub_size = 0;
  129.        'FILE_NOT_FOUND:dos_stub_size = 0;
  130.        'INVALID_FILE_NAME:dos_stub_size = 0;
  131.        'PERMISSION_DENIED:dos_stub_size = 0;
  132.      ]
  133.   dos_stub_home = "%ORACLE_HOME%\XBIN";
  134. }
  135.