Updating the installation configuration file
Create or update the installation configuration file.
This type of update supports only modification-level
updates. You can use push-to-client to update clients from version
3.1 to version 3.1.1, for example, but not from version 3.1 to version
4.0 and not from version 4.0 to version 4.1.
The installation configuration file is a UTF-8 encoded
XML file. It contains one or more sets of
<installedOffering>
tags
that define a target product offering ID and one or more pairs of
installed version ranges and response file names. The push-to-client
feature processes the following sample installation configuration
file as follows:- Scans the file until it finds a product offering ID that matches the ID of any product that is
installed in the same package group as the currently running IBM Explorer for z/OS version. For example, if a client is
running the IBM Explorer for z/OS product in the
same package group as the Engineering Workflow Management product, then the matching offering ID can
be either
com.ibm.team.install.rtc.client.eclipse
orcom.ibm.zos.explorer.v30
- If the current product version of the matching offering ID falls within the range that is
provided in any of the pairs of
<installedVersion>
and<responseFile>
attributes, Installation Manager starts by using the response file. If the Engineering Workflow Management version, for example, is greater than or equal to 3.0.0 and less than 3.0.1, Installation Manager starts by using the response file update_rtc_from_600_to_601.xml.
<?xml version="1.0" encoding="UTF-8"?>
<installConfig>
<installedOffering id="com.ibm.zos.explorer.v31">
<install
installedVersion="[3.0.1, 3.0.2)"
responseFile="update_zxpl_from_301_to_302.xml">
</install>
<install
installedVersion="[3.1.0, 3.1.1)"
responseFile="update_zxpl_from_310_to_311.xml">
</install>
</installedOffering>
<installedOffering id="com.ibm.team.install.rtc.client.eclipse">
<install
installedVersion="[6.0.0, 6.0.1)"
responseFile="update_rtc_from_600_to_601.xml">
</install>
</installedOffering>
</installConfig>