PatchDeploymentPatchConfigYum

data class PatchDeploymentPatchConfigYum(val excludes: List<String>? = null, val exclusivePackages: List<String>? = null, val minimal: Boolean? = null, val security: Boolean? = null)

Constructors

Link copied to clipboard
constructor(excludes: List<String>? = null, exclusivePackages: List<String>? = null, minimal: Boolean? = null, security: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val excludes: List<String>? = null

List of packages to exclude from update. These packages will be excluded.

Link copied to clipboard

An exclusive list of packages to be updated. These are the only packages that will be updated. If these packages are not installed, they will be ignored. This field cannot be specified with any other patch configuration fields.

Link copied to clipboard
val minimal: Boolean? = null

Will cause patch to run yum update-minimal instead.

Link copied to clipboard
val security: Boolean? = null

Adds the --security flag to yum update. Not supported on all platforms.