Creating z/OS component versions from TSO

To create IBM® z/OS® component versions from a time sharing option (TSO) command line, submit the buztool command from a TSO command shell.

Procedure

  1. Allocate data sets by typing lines similar to the following example at the command line:
    alloc fi(sysexec) ds('buz610.sbuzexec') shr reuse
    alloc fi(profile) da('buz610.sbuzenv(buzprof)') shr reuse
  2. Use the buztool createzosversion command to create the component version.
    Table 1. Arguments for the buztool createzosversion command
    Parameter Required Description
    -c true The name of the component in IBM UrbanCode Deploy. The component name can contain only letters, numbers, and spaces.
    -v false The name of the version to create. If a version is not specified, a version name is generated from the current time stamp. The version name can contain only letters, numbers, and spaces.
    -s true The location of the ship list file.
    For example, the following command creates a new version in the CICSModules component:
    buztool "createzosversion" "-c" "CICSModules" "-v" "fixbug100" "-s" "/u/ucduser/build/shiplist.xml"
    As shown, you must enclose all arguments in double quotation marks.
  3. Free the profile data set. Type text similar to the following example at the command line:
    free da('buz610.sbuzenv(buzprof)')

Results

The content that the ship list file specifies is available in a component in IBM UrbanCode Deploy.

Feedback