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

YumSettings

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

Yum patching is performed by executing yum update. Additional options can be set to control how this is executed. Note that not all settings are supported on all platforms.

interface YumSettings {
excludes?: string[];
exclusivePackages?: string[];
minimal?: boolean;
security?: boolean;
}

§Properties

§
excludes?: string[]
[src]

List of packages to exclude from update. These packages are excluded by using the yum --exclude flag.

§
exclusivePackages?: string[]
[src]

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 must not be specified with any other patch configuration fields.

§
minimal?: boolean
[src]

Will cause patch to run yum update-minimal instead.

§
security?: boolean
[src]

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