home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a525 / 26.ddi / ORAINST.INS < prev    next >
Encoding:
Text File  |  1993-02-24  |  3.8 KB  |  124 lines

  1. /* Copyright (c) Oracle Corporation 1992.  All Rights Reserved */
  2. /*****************************************************************************
  3.   NAME
  4.     orainst.ins - V3.0.9.2 version analysis/product configuration
  5.           script for DOS Oracle Installer.
  6.  
  7.   DESCRIPTION
  8.     This script checks dependencies and environment settings for the
  9.     installation of the DOS Oracle Installer.
  10.  
  11.   OWNER
  12.     Kush Deepak Jain
  13.  
  14.   MODIFIED    DD-MMM-YY     Reason
  15.     kjain     10-JAN-93     Permitted Oracle Home migration.  Made NLS compliant.
  16.     kjain     08-OCT-92     Forced a separate Oracle Home.
  17.     ekabatch  28-JAN-92     Created.
  18. *****************************************************************************/
  19. {
  20.   if (doit)
  21.     {
  22.       ui_product(product_label);
  23.  
  24.       ui_action(instantiate(installing_scripts));
  25.       copy(deinstl);
  26.  
  27.       ui_action(instantiate(installing_executables));
  28.       copy(orainst);
  29.  
  30.       ui_action(instantiate(installing_resources));
  31.       copy(res,nls_abbreviation);
  32.  
  33.       ui_action(recording_name);
  34.  
  35.       {
  36.         {
  37.       if (exists("%oracle_home%\dbs\oi%nls_abbreviation%.res"))
  38.             save_customer_name(the_customer_name,
  39.                    "%oracle_home%\dbs\oi%nls_abbreviation%.res");
  40.         }
  41.       [ 'WRITE_PROTECTED: signal('WRITE_ERROR); ]
  42.       }
  43.     [ 'WRITE_ERROR: signal('FAILURE,instantiate(recording_name_error1)); ]
  44.  
  45.       {
  46.     {
  47.       if (nls_abbreviation != "us")
  48.         save_customer_name(the_customer_name,
  49.                    "%oracle_home%\dbs\oius.res");
  50.     }
  51.       [ 'WRITE_PROTECTED: signal('WRITE_ERROR); ]
  52.       }
  53.     [ 'WRITE_ERROR: signal('FAILURE,instantiate(recording_name_error2)); ]
  54.  
  55.  
  56.       register(current_product);
  57.       reference(current_product);
  58.    }
  59.  
  60.    if (bootstrap)
  61.      { 
  62.        if (autoexec_needs_change)
  63.      if (config_needs_change)
  64.        if (autoexec_has_been_changed)
  65.          if (config_has_been_changed)
  66.            information_dialog(need_reboot_prompt,  
  67.                       need_reboot_content,
  68.                   need_reboot_help);    
  69.                else
  70.                  information_dialog(need_config_changes_prompt,
  71.                           need_config_changes_content,
  72.                           need_config_changes_help);
  73.        else if (config_has_been_changed)
  74.            information_dialog(need_autoexec_changes_prompt,
  75.                         need_autoexec_changes_content,
  76.                     need_autoexec_changes_help);
  77.         else
  78.                   information_dialog(need_con_auto_changes_prompt,
  79.                      need_con_auto_changes_content,
  80.                      need_con_auto_changes_help);
  81.       else if (autoexec_has_been_changed)
  82.          information_dialog(need_reboot_prompt,  
  83.                       need_reboot_content,need_reboot_help);
  84.            else
  85.                 information_dialog(need_autoexec_changes_prompt,
  86.                             need_autoexec_changes_content,
  87.                         need_autoexec_changes_help);
  88.        else if (config_needs_change)
  89.           {
  90.               if (config_has_been_changed)
  91.           information_dialog(need_reboot_prompt,  
  92.                      need_reboot_content,
  93.                          need_reboot_help);       
  94.          else
  95.                  information_dialog(need_config_changes_prompt,
  96.                           need_config_changes_content,
  97.                           need_config_changes_help);
  98.  
  99.           }
  100.        else if ( path_needs_change || config_is_wrong || oraconfig_is_wrong )
  101.               {  help_prompt ="";
  102.                  if (path_needs_change)
  103.            help_prompt ="%help_prompt%%path_problem_prompt%
  104.  
  105. ";
  106.          if (config_is_wrong)
  107.            help_prompt ="%help_prompt%%autoexec_problem_prompt%
  108.  
  109. ";
  110.          if (oraconfig_is_wrong)
  111.           help_prompt ="%help_prompt%%oraconfig_problem_prompt%
  112. ";
  113.                  information_dialog(need_reboot_prompt,
  114.                     need_reboot_content,
  115.                     help_prompt
  116.                     );
  117.           }
  118.        else
  119.      modify("BOOT","%oracle_home%\XBIN\ORAINST.EXE",".\BOOT.ORA");
  120.      }
  121.       [ 'CANCEL : continue(); ]
  122. }
  123. 
  124.