AgentInstallerJob - setAgentInstallerJobAclPushEnabledForUpgrade
AgentInstallerJob - setAgentInstallerJobAclPushEnabledForUpgrade
Description :
This command sets whether or not the Push Agent ACLs option is enabled for the Agent Installer Job by given name if operation type of that job is UPGRADE/INSTALL_AND_UPGRADE This command returns a handle to the updated Agent Installer Job with the new Push Agent ACLs option.
Return type : DBKey
Command Input :
Variable Name | Variable Type | Description |
---|---|---|
groupName | String | Fully qualified path to the job group containing the job. |
jobName | String | Name of the job. |
aclPushEnabledForUpgrade | Boolean | Push ACLs as part of the job (true=enabled, false=disabled). |
Example
The following example disables the Push Agent ACLs option in the Agent Installer Job named agentInstallerJob.
Script
JOB_NAME=agentInstallerJob
JOB_GROUP=/installjobs
JOB_DBKEY=`blcli AgentInstallerJob setAgentInstallerJobAclPushEnabledForUpgrade $JOB_GROUP $JOB_NAME true`
Comments