home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a525 / 51.ddi / MIGRATE.INS < prev    next >
Encoding:
Text File  |  1993-03-22  |  1.7 KB  |  65 lines

  1. /* Copyright (c) Oracle Corporation 1993.  All Rights Reserved */
  2. /*****************************************************************************
  3.   NAME
  4.     migate.ins - Netware V3 installation script for the V6 Migration Utility
  5.  
  6.   DESCRIPTION
  7.     This script installs the V6 Migration Utility.
  8.  
  9.   OWNER
  10.     Dan Galatin
  11.  
  12.   MODIFIED    DD-MMM-YY Reason
  13.     dgalatin  25-FEB-93 Created.
  14. *****************************************************************************/
  15. {
  16.   if (bootstrap)
  17.   {
  18.     ui_product(product_label);
  19.  
  20.     ui_action( instantiate(installing_nlms) );
  21.     copy(nlm);
  22.  
  23.     ui_action( instantiate(installing_msbs) );
  24.     copy(msg, nls_abbreviation);
  25.  
  26.     ui_action( instantiate(installing_sql) );
  27.     copy(sql);
  28.  
  29.     remove_file("%server%\%oracle_home%\orainst\netware.rgs");
  30.  
  31.     { remove_directory("%server%\%oracle_home%\orainst"); }
  32.      [ 'WRITE_ERROR: continue();
  33.        'OS_ERROR:    continue(); ]
  34.  
  35.     information_dialog(instantiate(install_done_prompt),
  36.                        install_done_content,
  37.                        instantiate(install_done_help));
  38.   }
  39.   else /* not on bootstrap... */
  40.   {
  41.     if (doit)
  42.     {
  43.       ui_product(product_label);
  44.   
  45.       ui_action( instantiate(installing_scripts) );
  46.       copy(deinstl);
  47.   
  48.       ui_action( instantiate(installing_nlms) );
  49.       copy(nlm);
  50.   
  51.       ui_action( instantiate(installing_msbs) );
  52.       copy(msg, nls_abbreviation);
  53.   
  54.       ui_action( instantiate(installing_sql) );
  55.       copy(sql);
  56.        
  57.       ui_action( instantiate(modifying_server_config) );
  58.       modify("RDBMS70",RDBMS70,"%server%/%ora_config%","=");
  59.  
  60.       ui_action( instantiate(registering) );
  61.       register(product);
  62.     }
  63.   }
  64. }
  65.