No description
Find a file
Jeff McCune d30e7f81d0 (#9080) Make facts.d match Facter 2.0
Based on feedback from Luke, the facts.d directory should at least match
the directory that will be used by Facter 2.0.

Reading #2157 I believe the Facter 2.0 facts.d feature is reasonably API
compatible with this custom fact from R.I. so I'm comfortable using the
same filesystem path.

Change in behavior:  Now look for facts in:
 * /etc/facter/facts.d
 * /etc/puppetlabs/facter/facts.d
2011-08-18 10:44:40 -07:00
lib (#9080) Make facts.d match Facter 2.0 2011-08-18 10:44:40 -07:00
manifests Move stages to after main 2011-05-26 10:21:42 -07:00
spec (#8792) Rename whole_line type to file_line 2011-08-04 19:17:48 -07:00
tests (#8792) Rename basic smoke test to reflect file_line rename 2011-08-08 09:33:56 -07:00
.gitignore Remove metadata.json from repository 2011-06-20 16:05:18 -07:00
CHANGELOG Update CHANGELOG, Modulefile and README for 2.1.0 2011-08-17 16:37:20 -07:00
LICENSE Add Apache 2.0 License 2011-06-03 11:44:37 -07:00
Modulefile Update CHANGELOG, Modulefile and README for 2.1.0 2011-08-17 16:37:20 -07:00
README.markdown Update CHANGELOG, Modulefile and README for 2.1.0 2011-08-17 16:37:20 -07:00
RELEASE_PROCESS.markdown Update CHANGELOG and README for 1.0.0 2011-08-04 17:24:46 -07:00

Puppet Labs Standard Library

This module provides a "standard library" of resources for developing Puppet Modules. This modules will include the following additions to Puppet

  • Stages
  • Facts
  • Functions
  • Defined resource types
  • Types
  • Providers

This module is officially curated and provided by Puppet Labs. The modules Puppet Labs writes and distributes will make heavy use of this standard library.

Compatibility

This module is designed to work with Puppet version 2.6 and later. It may be forked if Puppet 2.7 specific features are added. There are currently no plans for a Puppet 0.25 standard library module.

Functions

Please see puppet doc -r function for documentation on each function. The current list of functions is:

  • getvar
  • has_key
  • loadyaml
  • merge.rb
  • validate_array
  • validate_bool
  • validate_hash
  • validate_re
  • validate_string

validate_hash

$somehash = { 'one' => 'two' }
validate\_hash($somehash)

getvar()

This function aims to look up variables in user-defined namespaces within puppet. Note, if the namespace is a class, it should already be evaluated before the function is used.

$namespace = 'site::data'
include "${namespace}"
$myvar = getvar("${namespace}::myvar")

Facts

Facts in /etc/facts.d and /etc/puppetlabs/facts.d are now loaded automatically. This is a direct copy of R.I. Pienaar's custom facter fact located at: https://github.com/ripienaar/facter-facts/tree/master/facts-dot-d