]> gitweb.fluxo.info Git - puppet-stdlib.git/commit
Add function ensure_resource and defined_with_params
authorDan Bode <dan@puppetlabs.com>
Wed, 8 Aug 2012 03:48:54 +0000 (20:48 -0700)
committerDan Bode <dan@puppetlabs.com>
Tue, 14 Aug 2012 00:09:10 +0000 (17:09 -0700)
commitba789deac588dea83a129544f8aa00813db30bf0
tree8975d4e7b71bb650ec15e032eeae8e7af7ef91a4
parentdeafe88e02499a7bdababf0b5dc264fcc3edecf1
Add function ensure_resource and defined_with_params

This commit adds 2 new functions with unit tests.

defined_with_params works similarily to puppet's defined
function, except it allows you to also specify a hash of
params. defined_with_params will return true if a resource
also exists that matches the specified type/title (just like
with defined) as well as all of the specified params.

ensure_resource is a function that basically combines defined_with_params
with create_resources to conditionally create resources only if the
specified resource (title, type, params) does not already exist.

These functions are created to serve as an alternative to using
defined as follows:

    if ! defined(Package['some_package']) {
      package { 'some_package': ensure => present,
    }

The issue with this usage is that there is no guarentee about
what parameters were set in the previous definition of the package
that made its way into the catalog.

ensure_resource could be used instead, as:

    ensure_resource('package', 'some_package', { 'ensure' => 'present' })

This will creat the package resources only if another resource does
not exist with the specified parameters.
lib/puppet/parser/functions/defined_with_params.rb [new file with mode: 0644]
lib/puppet/parser/functions/ensure_resource.rb [new file with mode: 0644]
spec/functions/defined_with_params_spec.rb [new file with mode: 0644]
spec/functions/ensure_resource_spec.rb [new file with mode: 0644]