Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ZypperSettings

import type { ZypperSettings } from "https://googleapis.deno.dev/v1/osconfig:v1.ts";

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

interface ZypperSettings {
categories?: string[];
excludes?: string[];
exclusivePatches?: string[];
severities?: string[];
withOptional?: boolean;
withUpdate?: boolean;
}

§Properties

§
categories?: string[]
[src]

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

§
excludes?: string[]
[src]

List of patches to exclude from update.

§
exclusivePatches?: string[]
[src]

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.

§
severities?: string[]
[src]

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

§
withOptional?: boolean
[src]

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

§
withUpdate?: boolean
[src]

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