Puppet Class: patch::cache
- Defined in:
- manifests/cache.pp
Summary
patch cache supportOverview
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,
}
}
|