Puppet Class: patch::default

Defined in:
manifests/default.pp

Summary

patch defined type defaults and system setup

Overview

Parameters:

  • loose (Boolean)

    match patterns loosely, in case tabs or spaces have been munged in your files

  • backup (Boolean)

    create backups of successfully patched files



10
11
12
13
14
15
16
# File 'manifests/default.pp', line 10

class patch::default (
  Boolean $backup,
  Boolean $loose,
) {
  contain patch::package
  contain patch::cache
}