ZypperSettingsResponse

data class ZypperSettingsResponse(val categories: List<String>, val excludes: List<String>, val exclusivePatches: List<String>, val severities: List<String>, val withOptional: Boolean, val withUpdate: Boolean)

Zypper patching is performed by running zypper patch. See also https://en.opensuse.org/SDB:Zypper_manual.

Constructors

Link copied to clipboard
fun ZypperSettingsResponse(categories: List<String>, excludes: List<String>, exclusivePatches: List<String>, severities: List<String>, withOptional: Boolean, withUpdate: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Install only patches with these categories. Common categories include security, recommended, and feature.

Link copied to clipboard

List of patches to exclude from update.

Link copied to clipboard

An exclusive list of patches to be updated. These are the only patches that will be installed using 'zypper patch patch:' command. This field must not be used with any other patch configuration fields.

Link copied to clipboard

Install only patches with these severities. Common severities include critical, important, moderate, and low.

Link copied to clipboard

Adds the --with-optional flag to zypper patch.

Link copied to clipboard

Adds the --with-update flag, to zypper patch.