home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) Oracle Corporation 1992. All Rights Reserved */
- /*****************************************************************************
- NAME
- spx11.dei - NetWare V3 de-installation script for SQL*Net SPX.
-
- DESCRIPTION
- This script removes the NetWare SQL*Net SPX files and un-registers the
- product.
-
- OWNER
- Tim Kelley
-
- MODIFIED DD-MMM-YY Reason
- Okamura 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.dei
- vokamura 24-JUL-92 Modified for NetWare installation
- *****************************************************************************/
- {
- /*****************************************************************************
- Set up strings for NLS ...
- *****************************************************************************/
- net1_deregister = nls("net1 deregister","Unregistering %%registry_label%%...");
- net1_deinstall_nlms = nls("net1 deinstall nlms","Deinstalling %%registry_label%% NLMs...");
- net1_deinstall_scripts = nls("net1 deinstall scripts","Deinstalling %%registry_label%% Installation Scripts...");
-
- /*****************************************************************************
- Bind string constants ...
- *****************************************************************************/
- registry = registration("nwspx11");
- registry_label = registry_interface_label(registry);
-
- ui_product(registry_label);
-
- /*****************************************************************************
- Un-register the product ...
- *****************************************************************************/
- doit = FALSE;
-
- if (unreferenced(registry))
- doit = TRUE;
- else if (not(internally_called))
- if (uniquely_self_referenced(registry))
- doit = TRUE;
- else
- doit = yesno_dialog(instantiate(deinstall_prompt01));
-
- if (doit)
- {
- ui_product(registry_label);
-
- ui_action(instantiate(net1_deregister));
- unregister(registry);
-
- ui_action(instantiate(net1_deinstall_nlms));
- remove(nlm);
-
- ui_action(instantiate(net1_deinstall_scripts));
- remove(deinstl);
- }
- }
-