Unsupported content

 

This version of the documentation is no longer supported. However, the documentation is available for your convenience. You will not be able to leave comments.

BlPackage - createPackageFromAsset_1

BlPackage - createPackageFromAsset

Description :

This command creates a BLPackage based on the assets (server objects) listed in a specified template on a specified server. It also lets you specify single-user mode and reboot settings.

You can set the singleUserMode argument to one of the following strings:

  • NotRequired: Not Required
  • RevertTo: Use single-user mode without reboot
  • RebootAs: Reboot into single-user mode

You can set the rebootMode argument to one of the following strings:

  • NotRequired: Not required
  • AfterDeploy: After item deployment
  • AfterDeployWithReconfiguration: After item deployment with reconfiguration (Solaris ONLY)
  • OutOfBand: Out-of-band
  • AtJobEnd: By end of job
  • AtJobEndWithReconfigration: By end of job with reconfiguration (Solaris ONLY)
    This command returns a handle to the newly created package. This handle can be used as input to commands that need a handle to the package.

    Return type : DBKey

Command Input :

Variable Name

Variable Type

Description

packageName

String

Name of the package.

groupId

Integer

ID of a group that should contain the package.

bSoftLinked

Boolean

True to create a package soft linked to the depot object resources, false otherwise.

bCollectFileAcl

Boolean

True to package the file ACLs, false otherwise.

bCollectFileAttributes

Boolean

True to package the file attributes, false otherwise.

bCopyFileContents

Boolean

True to package the file contents, false otherwise.

bCollectRegistryAcl

Boolean

True to package the registry ACLs, false otherwise.

templateKey

DBKey

Handle to the template that should be used for packaging.

serverName

String

Name of the server to which the template should be applied.

singleUserMode

String

The single-user mode.

rebootMode

String

The reboot mode.

Example

This example shows how to create a BLPackage for an asset:

Script


# Name of the package. 

PACKAGE_NAME="package1" 

# Get the ID of the depot group in which the package will be saved. 

DEPOT_GROUP_ID=`blcli DepotGroup groupNameToId /parent/group1` 

# This boolean value sets the Depot Asset Options - soft link check box. True for checked. 

bSoftLinked="false" 

# This boolean value sets the File Options - Collect ACL control lists check box. True for checked. 

bCollectFileAcl="false" 

# This boolean value sets the File Options - Collect File Attributes check box. True for checked. 

bCollectFileAttributes="false" 

# This boolean value sets the File Options - Copy File Contents check box. True for checked. 

bCopyFileContents="true" 

# This boolean value sets the Registry Options - Collect ACL check box. True for checked. 

bCollectRegistryAcl="false" 

# A collection of the above options. 

PACKAGE_OPTIONS="$bSoftLinked $bCollectFileAcl $bCollectFileAttributes $bCopyFileContents $bCollectRegistryAcl" 

# This is the ID of a template that contains the assets you wish to package. 

TEMPLATE_NAME=template1 

TEMPLATE_GROUP=/template_group 

TEMPLATE_KEY=`blcli Template getDBKeyByGroupAndName $TEMPLATE_GROUP $TEMPLATE_NAME` 

# This is the name of the server from which you wish to obtain the assets. 

SERVER_NAME=server1 

SNGLE_USER_MODE=RevertTo 

REBOOT_MODE=AtJobEnd 

# Now create new package. 

PACKAGE1_DBKEY=`blcli BlPackage createPackageFromAsset $PACKAGE_NAME $DEPOT_GROUP_ID $PACKAGE_OPTIONS $TEMPLATE_KEY $SERVER_NAME $SINGLE_USER_MODE $REBOOT_MODE` 



Was this page helpful? Yes No Submitting... Thank you

Comments