home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) Oracle Corporation 1992. All Rights Reserved */
- /*****************************************************************************
- NAME
- spx11.vrf - NetWare V3 installation verification script for SQL*Net SPX.
-
- DESCRIPTION
- This script checks dependencies and environment settings for installation
- of the NetWare SQL*Net SPX product.
-
- OWNER
- Tim Kelley
-
- MODIFIED DD-MMM-YY Reason
- vokamura 19-NOV-92 update
- trodgers 31-JAN-92 Created.
- trodgers 27-FEB-92 Split client/server.
- tkelley 06-MAR-92 Copied from OS/2 spxs.vrf
- vokamura 24-JUL-92 Modified for NetWare installation
- *****************************************************************************/
- {
- /*****************************************************************************
- Bind string constants ...
- *****************************************************************************/
- product = nwspx11;
- product_label = product_interface_label(product);
-
- spxname_prompt = nls("spxname_prompt","What should the listener name be set to?");
- spxname_help = nls("spxname_help","Specify a default name that the SQL*Net SPX 1.1 listener will use.");
- spxname_content = nls("spxname_content","Listener Name");
-
- net1_analyze_comment = nls("net1 analyze comment","Analyzing %%product_label%% Dependencies...");
- net1_install_scripts = nls("net1 install scripts","Installing %%product_label%% Installation Scripts...");
- net1_install_nlms = nls("net1 install nlms","Installing %%product_label%% NLMs...");
- net1_modify_config = nls("net1 modify config","Modifying %%ora_config%%...");
- net1_register_label = nls("net1 register label","Registering %%product_label%%...");
-
- /*****************************************************************************
- Start main logic ...
- *****************************************************************************/
- ui_product(product_label);
- ui_action(instantiate(net1_analyze_comment));
-
- doit = TRUE;
-
- /*****************************************************************************
- Check if the product has already been installed ...
- *****************************************************************************/
-
- if (registered(product_name(product)))
- {
- registry = registration(product_name(product));
- current_version = product_version(product);
- installed_version = registry_version(registry);
-
- if (earlier_version(registry,current_version))
- {
- doit = yesno_dialog(instantiate(reinstall_prompt01));
-
- if (not(doit))
- if (internally_called)
- information_dialog(instantiate(reinstall_prompt02));
- }
- else if (not(internally_called))
- if (later_version(registry,current_version))
- doit = yesno_dialog(instantiate(reinstall_prompt03));
- else
- doit = yesno_dialog(instantiate(reinstall_prompt04));
- else
- doit = FALSE;
- }
-
- if (doit)
- {
- mark
- {
-
- { spxname_default = translate("ORACLE_SRVNAME","%SERVER%\%ORA_CONFIG%"); }
- [ 'UNBOUND_ENVIRONMENT_VARIABLE: spxname_default = "ORASRV"; ]
-
- spxname = text_dialog(spxname_prompt,spxname_default,
- spxname_content,spxname_help);
- }
- }
-
- if (doit)
- return( sum( nlm, deinstl ) );
- else
- return(0);
- }
-