Puppet Class: stdlib::manage
- Defined in:
- manifests/manage.pp
Summary
A simple place to define trivial resourcesOverview
Sometimes your systems require a single simple resource. It can feel unnecessary to create a module for a single resource. There are a number of possible patterns to generate trivial resource definitions. This is an attempt to create a single clear method for uncomplicated resources. There is limited support for ‘before`, `require`, `notify`, and `subscribe`. However, the target resources must be defined before this module is run.
stdlib::manage::create_resources:
file:
'/etc/motd.d/hello':
content: I say Hi
notify: 'Service[sshd]'
package:
example:
ensure: installed
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'manifests/manage.pp', line 41
class stdlib::manage (
Hash[String, Hash] $create_resources = {}
) {
$create_resources.each |$type, $resources| {
$resources.each |$title, $attributes| {
$filtered_attributes = $attributes.filter |$key, $value| {
$key !~ /(before|require|notify|subscribe)/
}
if $attributes['before'] {
$_before = stdlib::str2resource($attributes['before'])
} else {
$_before = undef
}
if $attributes['require'] {
$_require = stdlib::str2resource($attributes['require'])
} else {
$_require = undef
}
if $attributes['notify'] {
$_notify = stdlib::str2resource($attributes['notify'])
} else {
$_notify = undef
}
if $attributes['subscribe'] {
$_subscribe = stdlib::str2resource($attributes['subscribe'])
} else {
$_subscribe = undef
}
create_resources($type, { $title => $filtered_attributes }, { 'before' => $_before, 'require' => $_require, 'notify' => $_notify, 'subscribe' => $_subscribe })
}
}
}
|