home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************
- Copyright (c) Oracle Corporation 1996. All Rights Reserved
-
- NAME
- prog.ins - Package installation script - single selection
-
- OWNER
- David Tom
-
- MODIFIED DD-MMM-YY Reason
- mmckerle AUG-97 Modified for 7.3.4 production release of Prog/2000 package
- dtom 21-AUG-95 Install all selected children products not just chosen
- product (may have been chosen in another package)
- Children installs must complete before parent.
- See installer bug 293928.
- dtom 01-AUG-95 Created
- *****************************************************************************/
-
- {
- if (doit)
- {
- /*----Setup-------------------------------------------------------------*/
-
- ins_ratchet = "1.0.0.0.0";
-
- execute("%installer_home%\%operating_system%.ins");
-
- /*----Install selected products-----------------------------------------*/
-
- tmp_products = products;
-
- while (not(empty(tmp_products)))
- {
- prod = first(tmp_products);
-
- if (member(selected_products,prod))
- {
- install(prod);
-
- { reference(prod); }
- [ 'UNREGISTERED_PRODUCT: continue();]
- }
-
- tmp_products = rest(tmp_products);
- }
-
- }
- }
-