Puppet Class: patch::cache

Defined in:
manifests/cache.pp

Summary

patch cache support

Overview

Parameters:

  • directory (Stdlib::Absolutepath)

    where to store patch files

  • mode (String)

    file mode for directory

  • owner (String)

    directory and patch file owner

  • group (String)

    directory and patch file group



13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'manifests/cache.pp', line 13

class patch::cache (
  Stdlib::Absolutepath $directory,
  String $mode,
  String $owner,
  String $group,
) {
  file { $directory:
    ensure => directory,
    owner  => $owner,
    group  => $group,
    mode   => $mode,
  }
}