Version information
This version is compatible with:
- Puppet Enterprise >= 3.0.0 < 2015.4.0
- Puppet >=2.7.20 <5.0.0
- , , , , , , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'puppetlabs-stdlib', '4.9.1'
Learn more about managing modules with a PuppetfileDocumentation
#stdlib
####Table of Contents
- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with stdlib
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
##Overview
Adds a standard library of resources for Puppet modules.
##Module Description
This module provides a standard library of resources for the development of Puppet modules. Puppet modules make heavy use of this standard library. The stdlib module adds the following resources to Puppet:
- Stages
- Facts
- Functions
- Defined resource types
- Types
- Providers
Note: As of version 3.7, Puppet Enterprise no longer includes the stdlib module. If you're running Puppet Enterprise, you should install the most recent release of stdlib for compatibility with Puppet modules.
##Setup
Installing the stdlib module adds the functions, facts, and resources of this standard library to Puppet.
##Usage
After you've installed stdlib, all of its functions, facts, and resources are available for module use or development.
If you want to use a standardized set of run stages for Puppet, include stdlib
in your manifest.
-
stdlib
: Most of stdlib's features are automatically loaded by Puppet. To use standardized run stages in Puppet, declare this class in your manifest withinclude stdlib
.When declared, stdlib declares all other classes in the module. The only other class currently included in the module is
stdlib::stages
.
The stdlib::stages
class declares various run stages for deploying infrastructure, language runtimes, and application layers. The high level stages are (in order):
-
setup
-
main
-
runtime
-
setup_infra
-
deploy_infra
-
setup_app
-
deploy_app
-
deploy
Sample usage:
node default { include stdlib class { java: stage => 'runtime' } }
Reference
Classes
Public Classes
The stdlib class has no parameters.
Private Classes
stdlib::stages
: Manages a standard set of run stages for Puppet. It is managed by the stdlib class and should not be declared independently.
Types
file_line
Ensures that a given line, including whitespace at the beginning and end, is contained within a file. If the line is not contained in the given file, Puppet will add the line. Multiple resources can be declared to manage multiple lines in the same file. You can also use match
to replace existing lines.
file_line { 'sudo_rule':
path => '/etc/sudoers',
line => '%sudo ALL=(ALL) ALL',
}
file_line { 'sudo_rule_nopw':
path => '/etc/sudoers',
line => '%sudonopw ALL=(ALL) NOPASSWD: ALL',
}
Parameters
All parameters are optional, unless otherwise noted.
after
: Specifies the line after which Puppet will add any new lines. (Existing lines are added in place.) Valid options: String. Default: Undefined.ensure
: Ensures whether the resource is present. Valid options: 'present', 'absent'. Default: 'present'.line
: Required. Sets the line to be added to the file located by thepath
parameter. Valid options: String. Default: Undefined.match
: Specifies a regular expression to run against existing lines in the file; if a match is found, it is replaced rather than adding a new line. Valid options: String containing a regex. Default: Undefined.multiple
: Determines ifmatch
and/orafter
can change multiple lines. If set to false, an exception will be raised if more than one line matches. Valid options: 'true', 'false'. Default: Undefined.name
: Sets the name to use as the identity of the resource. This is necessary if you want the resource namevar to differ from the suppliedtitle
of the resource. Valid options: String. Default: Undefined.path
: Required. Defines the file in which Puppet will ensure the line specified byline
. Must be an absolute path to the file.replace
: Defines whether the resource will overwrite an existing line that matches thematch
parameter. If set to false and a line is found matching thematch
param, the line will not be placed in the file. Valid options: true, false, yes, no. Default: true
Functions
abs
Returns the absolute value of a number; for example, '-34.56' becomes '34.56'. Takes a single integer and float value as an argument. Type: rvalue.
any2array
Converts any object to an array containing that object. Empty argument lists are converted to an empty array. Arrays are left untouched. Hashes are converted to arrays of alternating keys and values. Type: rvalue.
base64
Converts a string to and from base64 encoding. Requires an action ('encode', 'decode') and either a plain or base64-encoded string. Type: rvalue.
basename
Returns the basename
of a path (optionally stripping an extension). For example:
- ('/path/to/a/file.ext') returns 'file.ext'
- ('relative/path/file.ext') returns 'file.ext'
- ('/path/to/a/file.ext', '.ext') returns 'file'
Type: rvalue.
bool2num
Converts a boolean to a number. Converts values:
- 'false', 'f', '0', 'n', and 'no' to 0.
- 'true', 't', '1', 'y', and 'yes' to 1. Requires a single boolean or string as an input. Type: rvalue.
capitalize
Capitalizes the first letter of a string or array of strings. Requires either a single string or an array as an input. Type: rvalue.
ceiling
Returns the smallest integer greater than or equal to the argument. Takes a single numeric value as an argument. Type: rvalue.
chomp
Removes the record separator from the end of a string or an array of strings; for example, 'hello\n' becomes 'hello'. Requires a single string or array as an input. Type: rvalue.
chop
Returns a new string with the last character removed. If the string ends with '\r\n', both characters are removed. Applying chop
to an empty string returns an empty string. If you want to merely remove record separators, then you should use the chomp
function. Requires a string or an array of strings as input. Type: rvalue.
concat
Appends the contents of multiple arrays onto the first array given. For example:
concat(['1','2','3'],'4')
returns ['1','2','3','4'].concat(['1','2','3'],'4',['5','6','7'])
returns ['1','2','3','4','5','6','7']. Type: rvalue.
convert_base
Converts a given integer or base 10 string representing an integer to a specified base, as a string. For example:
convert_base(5, 2)
results in: '101'convert_base('254', '16')
results in: 'fe'
count
If called with only an array, it counts the number of elements that are not nil/undef. If called with a second argument, counts the number of elements in an array that matches the second argument. Type: rvalue.
defined_with_params
Takes a resource reference and an optional hash of attributes. Returns 'true' if a resource with the specified attributes has already been added to the catalog. Returns 'false' otherwise.
user { 'dan':
ensure => present,
}
if ! defined_with_params(User[dan], {'ensure' => 'present' }) {
user { 'dan': ensure => present, }
}
Type: rvalue.
delete
Deletes all instances of a given element from an array, substring from a string, or key from a hash. For example, delete(['a','b','c','b'], 'b')
returns ['a','c']; delete('abracadabra', 'bra')
returns 'acada'. delete({'a' => 1,'b' => 2,'c' => 3},['b','c'])
returns {'a'=> 1}. Type: rvalue.
delete_at
Deletes a determined indexed value from an array. For example, delete_at(['a','b','c'], 1)
returns ['a','c']. Type: rvalue.
delete_values
Deletes all instances of a given value from a hash. For example, delete_values({'a'=>'A','b'=>'B','c'=>'C','B'=>'D'}, 'B')
returns {'a'=>'A','c'=>'C','B'=>'D'} Type: rvalue.
delete_undef_values
Deletes all instances of the undef value from an array or hash. For example, $hash = delete_undef_values({a=>'A', b=>'', c=>undef, d => false})
returns {a => 'A', b => '', d => false}. Type: rvalue.
difference
Returns the difference between two arrays. The returned array is a copy of the original array, removing any items that also appear in the second array. For example, difference(["a","b","c"],["b","c","d"])
returns ["a"]. Type: rvalue.
dirname
Returns the dirname
of a path. For example, dirname('/path/to/a/file.ext')
returns '/path/to/a'. Type: rvalue.
dos2unix
Returns the Unix version of the given string. Very useful when using a File resource with a cross-platform template. Type: rvalue.
file{$config_file:
ensure => file,
content => dos2unix(template('my_module/settings.conf.erb')),
}
See also unix2dos.
downcase
Converts the case of a string or of all strings in an array to lowercase. Type: rvalue.
empty
Returns 'true' if the variable is empty. Type: rvalue.
ensure_packages
Takes a list of packages and only installs them if they don't already exist. It optionally takes a hash as a second parameter to be passed as the third argument to the ensure_resource()
function. Type: statement.
ensure_resource
Takes a resource type, title, and a hash of attributes that describe the resource(s).
user { 'dan':
ensure => present,
}
This example only creates the resource if it does not already exist:
ensure_resource('user', 'dan', {'ensure' => 'present' })
If the resource already exists, but does not match the specified parameters, this function attempts to recreate the resource, leading to a duplicate resource definition error.
An array of resources can also be passed in, and each will be created with the type and parameters specified if it doesn't already exist.
ensure_resource('user', ['dan','alex'], {'ensure' => 'present'})
Type: statement.
flatten
Flattens deeply nested arrays and returns a single flat array as a result. For example, flatten(['a', ['b', ['c']]])
returns ['a','b','c']. Type: rvalue.
floor
Takes a single numeric value as an argument, and returns the largest integer less than or equal to the argument. Type: rvalue.
fqdn_rand_string
Generates a random alphanumeric string using an optionally-specified character set (default is alphanumeric), combining the $fqdn
fact and an optional seed for repeatable randomness.
Usage:
fqdn_rand_string(LENGTH, [CHARSET], [SEED])
Examples:
fqdn_rand_string(10)
fqdn_rand_string(10, 'ABCDEF!@#$%^')
fqdn_rand_string(10, '', 'custom seed')
Type: rvalue.
fqdn_rotate
Rotates an array or string a random number of times, combining the $fqdn
fact and an optional seed for repeatable randomness.
Usage:
fqdn_rotate(VALUE, [SEED])
Examples:
fqdn_rotate(['a', 'b', 'c', 'd'])
fqdn_rotate('abcd')
fqdn_rotate([1, 2, 3], 'custom seed')
Type: rvalue.
get_module_path
Returns the absolute path of the specified module for the current environment.
$module_path = get_module_path('stdlib')
Type: rvalue.
getparam
Takes a resource reference and the name of the parameter, and returns the value of the resource's parameter.
For example, the following returns 'param_value':
define example_resource($param) {
}
example_resource { "example_resource_instance":
param => "param_value"
}
getparam(Example_resource["example_resource_instance"], "param")
Type: rvalue.
getvar
Looks up a variable in a remote namespace.
For example:
$foo = getvar('site::data::foo')
# Equivalent to $foo = $site::data::foo
This is useful if the namespace itself is stored in a string:
$datalocation = 'site::data'
$bar = getvar("${datalocation}::bar")
# Equivalent to $bar = $site::data::bar
Type: rvalue.
grep
Searches through an array and returns any elements that match the provided regular expression. For example, grep(['aaa','bbb','ccc','aaaddd'], 'aaa')
returns ['aaa','aaaddd']. Type: rvalue.
has_interface_with
Returns a boolean based on kind and value:
- macaddress
- netmask
- ipaddress
- network
Examples:
has_interface_with("macaddress", "x:x:x:x:x:x")
has_interface_with("ipaddress", "127.0.0.1") => true
If no kind is given, then the presence of the interface is checked:
has_interface_with("lo") => true
Type: rvalue.
has_ip_address
Returns 'true' if the client has the requested IP address on some interface. This function iterates through the interfaces
fact and checks the ipaddress_IFACE
facts, performing a simple string comparison. Type: rvalue.
has_ip_network
Returns 'true' if the client has an IP address within the requested network. This function iterates through the interfaces
fact and checks the network_IFACE
facts, performing a simple string comparision. Type: rvalue.
has_key
Determines if a hash has a certain key value.
Example:
$my_hash = {'key_one' => 'value_one'}
if has_key($my_hash, 'key_two') {
notice('we will not reach here')
}
if has_key($my_hash, 'key_one') {
notice('this will be printed')
}
Type: rvalue.
hash
Converts an array into a hash. For example, hash(['a',1,'b',2,'c',3])
returns {'a'=>1,'b'=>2,'c'=>3}. Type: rvalue.
intersection
Returns an array an intersection of two. For example, intersection(["a","b","c"],["b","c","d"])
returns ["b","c"]. Type: rvalue.
is_array
Returns 'true' if the variable passed to this function is an array. Type: rvalue.
is_bool
Returns 'true' if the variable passed to this function is a boolean. Type: rvalue.
is_domain_name
Returns 'true' if the string passed to this function is a syntactically correct domain name. Type: rvalue.
is_float
Returns 'true' if the variable passed to this function is a float. Type: rvalue.
is_function_available
Accepts a string as an argument and determines whether the Puppet runtime has access to a function by that name. It returns 'true' if the function exists, 'false' if not. Type: rvalue.
is_hash
Returns 'true' if the variable passed to this function is a hash. Type: rvalue.
is_integer
Returns 'true' if the variable returned to this string is an integer. Type: rvalue.
is_ip_address
Returns 'true' if the string passed to this function is a valid IP address. Type: rvalue.
is_mac_address
Returns 'true' if the string passed to this function is a valid MAC address. Type: rvalue.
is_numeric
Returns 'true' if the variable passed to this function is a number. Type: rvalue.
is_string
Returns 'true' if the variable passed to this function is a string. Type: rvalue.
join
Joins an array into a string using a separator. For example, join(['a','b','c'], ",")
results in: "a,b,c". Type: rvalue.
join_keys_to_values
Joins each key of a hash to that key's corresponding value with a separator. Keys and values are cast to strings. The return value is an array in which each element is one joined key/value pair. For example, join_keys_to_values({'a'=>1,'b'=>2}, " is ")
results in ["a is 1","b is 2"]. Type: rvalue.
keys
Returns the keys of a hash as an array. Type: rvalue.
loadyaml
Loads a YAML file containing an array, string, or hash, and returns the data in the corresponding native data type. For example:
$myhash = loadyaml('/etc/puppet/data/myhash.yaml')
Type: rvalue.
load_module_metadata
Loads the metadata.json of a target module. Can be used to determine module version and authorship for dynamic support of modules.
$metadata = load_module_metadata('archive')
notify { $metadata['author']: }
Type: rvalue.
lstrip
Strips spaces to the left of a string. Type: rvalue.
max
Returns the highest value of all arguments. Requires at least one argument. Type: rvalue.
member
This function determines if a variable is a member of an array. The variable can be either a string, array, or fixnum. For example, member(['a','b'], 'b')
and member(['a','b','c'], ['b','c'])
return 'true', while member(['a','b'], 'c')
and member(['a','b','c'], ['c','d'])
return 'false'. Note: This function does not support nested arrays. If the first argument contains nested arrays, it will not recurse through them.
Type: rvalue.
merge
Merges two or more hashes together and returns the resulting hash.
Example:
$hash1 = {'one' => 1, 'two' => 2}
$hash2 = {'two' => 'dos', 'three' => 'tres'}
$merged_hash = merge($hash1, $hash2)
# The resulting hash is equivalent to:
# $merged_hash = {'one' => 1, 'two' => 'dos', 'three' => 'tres'}
When there is a duplicate key, the key in the rightmost hash "wins." Type: rvalue.
min
Returns the lowest value of all arguments. Requires at least one argument. Type: rvalue.
num2bool
Converts a number or a string representation of a number into a true boolean. Zero or anything non-numeric becomes 'false'. Numbers greater than 0 become 'true'. Type: rvalue.
parsejson
Converts a string of JSON into the correct Puppet structure. Type: rvalue.
parseyaml
Converts a string of YAML into the correct Puppet structure. Type: rvalue.
pick
From a list of values, returns the first value that is not undefined or an empty string. Takes any number of arguments, and raises an error if all values are undefined or empty.
$real_jenkins_version = pick($::jenkins_version, '1.449')
Type: rvalue.
prefix
Applies a prefix to all elements in an array, or to the keys in a hash. For example:
prefix(['a','b','c'], 'p')
returns ['pa','pb','pc']prefix({'a'=>'b','b'=>'c','c'=>'d'}, 'p')
returns {'pa'=>'b','pb'=>'c','pc'=>'d'}.
Type: rvalue.
assert_private
Sets the current class or definition as private. Calling the class or definition from outside the current module will fail.
For example, assert_private()
called in class foo::bar
outputs the following message if class is called from outside module foo
:
Class foo::bar is private
To specify the error message you want to use:
assert_private("You're not supposed to do that!")
Type: statement.
pw_hash
Hashes a password using the crypt function. Provides a hash usable on most POSIX systems.
The first argument to this function is the password to hash. If it is undef or an empty string, this function returns undef.
The second argument to this function is which type of hash to use. It will be converted into the appropriate crypt(3) hash specifier. Valid hash types are:
Hash type | Specifier |
---|---|
MD5 | 1 |
SHA-256 | 5 |
SHA-512 (recommended) | 6 |
The third argument to this function is the salt to use.
Type: rvalue.
Note: this uses the Puppet master's implementation of crypt(3). If your environment contains several different operating systems, ensure that they are compatible before using this function.
range
Extrapolates a range as an array when given in the form of '(start, stop)'. For example, range("0", "9")
returns [0,1,2,3,4,5,6,7,8,9]. Zero-padded strings are converted to integers automatically, so range("00", "09")
returns [0,1,2,3,4,5,6,7,8,9].
Non-integer strings are accepted; range("a", "c")
returns ["a","b","c"], and range("host01", "host10")
returns ["host01", "host02", ..., "host09", "host10"].
Passing a third argument will cause the generated range to step by that interval, e.g. range("0", "9", "2")
returns ["0","2","4","6","8"].
Type: rvalue.
reject
Searches through an array and rejects all elements that match the provided regular expression. For example, reject(['aaa','bbb','ccc','aaaddd'], 'aaa')
returns ['bbb','ccc']. Type: rvalue.
reverse
Reverses the order of a string or array. Type: rvalue.
rstrip
Strips spaces to the right of the string. Type: rvalue.
shuffle
Randomizes the order of a string or array elements. Type: rvalue.
size
Returns the number of elements in a string, an array or a hash. Type: rvalue.
sort
Sorts strings and arrays lexically. Type: rvalue.
squeeze
Returns a new string where runs of the same character that occur in this set are replaced by a single character. Type: rvalue.
str2bool
Converts a string to a boolean. This attempts to convert strings that contain values such as '1', 't', 'y', and 'yes' to 'true' and strings that contain values such as '0', 'f', 'n', and 'no' to 'false'. Type: rvalue.
str2saltedsha512
Converts a string to a salted-SHA512 password hash, used for OS X versions >= 10.7. Given any string, this function returns a hex version of a salted-SHA512 password hash, which can be inserted into your Puppet manifests as a valid password attribute. Type: rvalue.
strftime
Returns formatted time. For example, strftime("%s")
returns the time since Unix epoch, and strftime("%Y-%m-%d")
returns the date. Type: rvalue.
Format:
* `%a`: The abbreviated weekday name ('Sun')
* `%A`: The full weekday name ('Sunday')
* `%b`: The abbreviated month name ('Jan')
* `%B`: The full month name ('January')
* `%c`: The preferred local date and time representation
* `%C`: Century (20 in 2009)
* `%d`: Day of the month (01..31)
* `%D`: Date (%m/%d/%y)
* `%e`: Day of the month, blank-padded ( 1..31)
* `%F`: Equivalent to %Y-%m-%d (the ISO 8601 date format)
* `%h`: Equivalent to %b
* `%H`: Hour of the day, 24-hour clock (00..23)
* `%I`: Hour of the day, 12-hour clock (01..12)
* `%j`: Day of the year (001..366)
* `%k`: Hour, 24-hour clock, blank-padded ( 0..23)
* `%l`: Hour, 12-hour clock, blank-padded ( 0..12)
* `%L`: Millisecond of the second (000..999)
* `%m`: Month of the year (01..12)
* `%M`: Minute of the hour (00..59)
* `%n`: Newline (\n)
* `%N`: Fractional seconds digits, default is 9 digits (nanosecond)
* `%3N`: Millisecond (3 digits)
* `%6N`: Microsecond (6 digits)
* `%9N`: Nanosecond (9 digits)
* `%p`: Meridian indicator ('AM' or 'PM')
* `%P`: Meridian indicator ('am' or 'pm')
* `%r`: Time, 12-hour (same as %I:%M:%S %p)
* `%R`: Time, 24-hour (%H:%M)
* `%s`: Number of seconds since the Unix epoch, 1970-01-01 00:00:00 UTC.
* `%S`: Second of the minute (00..60)
* `%t`: Tab character ( )
* `%T`: Time, 24-hour (%H:%M:%S)
* `%u`: Day of the week as a decimal, Monday being 1. (1..7)
* `%U`: Week number of the current year, starting with the first Sunday as the first day of the first week (00..53)
* `%v`: VMS date (%e-%b-%Y)
* `%V`: Week number of year according to ISO 8601 (01..53)
* `%W`: Week number of the current year, starting with the first Monday as the first day of the first week (00..53)
* `%w`: Day of the week (Sunday is 0, 0..6)
* `%x`: Preferred representation for the date alone, no time
* `%X`: Preferred representation for the time alone, no date
* `%y`: Year without a century (00..99)
* `%Y`: Year with century
* `%z`: Time zone as hour offset from UTC (e.g. +0900)
* `%Z`: Time zone name
* `%%`: Literal '%' character
strip
Removes leading and trailing whitespace from a string or from every string inside an array. For example, strip(" aaa ")
results in "aaa". Type: rvalue.
suffix
Applies a suffix to all elements in an array. For example, suffix(['a','b','c'], 'p')
returns ['ap','bp','cp']. Type: rvalue.
swapcase
Swaps the existing case of a string. For example, swapcase("aBcD")
results in "AbCd". Type: rvalue.
time
Returns the current Unix epoch time as an integer. For example, time()
returns something like '1311972653'. Type: rvalue.
to_bytes
Converts the argument into bytes, for example "4 kB" becomes "4096". Takes a single string value as an argument. Type: rvalue.
try_get_value
Type: rvalue.
Looks up into a complex structure of arrays and hashes and returns a value or the default value if nothing was found.
Key can contain slashes to describe path components. The function will go down the structure and try to extract the required value.
$data = { 'a' => { 'b' => [ 'b1', 'b2', 'b3', ] } }
$value = try_get_value($data, 'a/b/2', 'not_found', '/') => $value = 'b3'
a -> first hash key b -> second hash key 2 -> array index starting with 0
not_found -> (optional) will be returned if there is no value or the path did not match. Defaults to nil. / -> (optional) path delimiter. Defaults to '/'.
In addition to the required "key" argument, "try_get_value" accepts default argument. It will be returned if no value was found or a path component is missing. And the fourth argument can set a variable path separator.
type3x
Returns a string description of the type when passed a value. Type can be a string, array, hash, float, integer, or boolean. This function will be removed when Puppet 3 support is dropped and the new type system can be used. Type: rvalue.
type_of
Returns the literal type when passed a value. Requires the new parser. Useful for comparison of types with <=
such as in if type_of($some_value) <= Array[String] { ... }
(which is equivalent to if $some_value =~ Array[String] { ... }
) Type: rvalue.
union
Returns a union of two or more arrays, without duplicates. For example, union(["a","b","c"],["b","c","d"])
returns ["a","b","c","d"]. Type: rvalue.
unique
Removes duplicates from strings and arrays. For example, unique("aabbcc")
returns 'abc', and unique(["a","a","b","b","c","c"])
returns ["a","b","c"]. Type: rvalue.
unix2dos
Returns the DOS version of the given string. Very useful when using a File resource with a cross-platform template. Type: rvalue.
file{$config_file:
ensure => file,
content => unix2dos(template('my_module/settings.conf.erb')),
}
See also dos2unix.
upcase
Converts an object, array or hash of objects that respond to upcase to uppercase. For example, upcase('abcd')
returns 'ABCD'. Type: rvalue.
uriescape
URLEncodes a string or array of strings. Requires either a single string or an array as an input. Type: rvalue.
validate_absolute_path
Validates that a given string represents an absolute path in the filesystem. Works for Windows and Unix style paths.
The following values pass:
$my_path = 'C:/Program Files (x86)/Puppet Labs/Puppet'
validate_absolute_path($my_path)
$my_path2 = '/var/lib/puppet'
validate_absolute_path($my_path2)
$my_path3 = ['C:/Program Files (x86)/Puppet Labs/Puppet','C:/Program Files/Puppet Labs/Puppet']
validate_absolute_path($my_path3)
$my_path4 = ['/var/lib/puppet','/usr/share/puppet']
validate_absolute_path($my_path4)
The following values fail, causing compilation to abort:
validate_absolute_path(true)
validate_absolute_path('../var/lib/puppet')
validate_absolute_path('var/lib/puppet')
validate_absolute_path([ 'var/lib/puppet', '/var/foo' ])
validate_absolute_path([ '/var/lib/puppet', 'var/foo' ])
$undefined = undef
validate_absolute_path($undefined)
Type: statement.
validate_array
Validates that all passed values are array data structures. Aborts catalog compilation if any value fails this check.
The following values pass:
$my_array = [ 'one', 'two' ]
validate_array($my_array)
The following values fail, causing compilation to abort:
validate_array(true)
validate_array('some_string')
$undefined = undef
validate_array($undefined)
Type: statement.
validate_augeas
Performs validation of a string using an Augeas lens. The first argument of this function should be the string to test, and the second argument should be the name of the Augeas lens to use. If Augeas fails to parse the string with the lens, the compilation aborts with a parse error.
A third optional argument lists paths which should not be found in the file. The $file
variable points to the location of the temporary file being tested in the Augeas tree.
For example, to make sure your $passwdcontent never contains user foo
:
validate_augeas($passwdcontent, 'Passwd.lns', ['$file/foo'])
To ensure that no users use the '/bin/barsh' shell:
validate_augeas($passwdcontent, 'Passwd.lns', ['$file/*[shell="/bin/barsh"]']
You can pass a fourth argument as the error message raised and shown to the user:
validate_augeas($sudoerscontent, 'Sudoers.lns', [], 'Failed to validate sudoers content with Augeas')
Type: statement.
validate_bool
Validates that all passed values are either true or false. Aborts catalog compilation if any value fails this check.
The following values will pass:
$iamtrue = true
validate_bool(true)
validate_bool(true, true, false, $iamtrue)
The following values will fail, causing compilation to abort:
$some_array = [ true ]
validate_bool("false")
validate_bool("true")
validate_bool($some_array)
Type: statement.
validate_cmd
Performs validation of a string with an external command. The first argument of this function should be a string to test, and the second argument should be a path to a test command taking a % as a placeholder for the file path (will default to the end of the command if no % placeholder given). If the command is launched against a tempfile containing the passed string, or returns a non-null value, compilation will abort with a parse error.
If a third argument is specified, this will be the error message raised and seen by the user.
# Defaults to end of path
validate_cmd($sudoerscontent, '/usr/sbin/visudo -c -f', 'Visudo failed to validate sudoers content')
# % as file location
validate_cmd($haproxycontent, '/usr/sbin/haproxy -f % -c', 'Haproxy failed to validate config content')
Type: statement.
validate_hash
Validates that all passed values are hash data structures. Aborts catalog compilation if any value fails this check.
The following values will pass:
$my_hash = { 'one' => 'two' }
validate_hash($my_hash)
The following values will fail, causing compilation to abort:
validate_hash(true)
validate_hash('some_string')
$undefined = undef
validate_hash($undefined)
Type: statement.
validate_integer
Validates that the first argument is an integer (or an array of integers). Aborts catalog compilation if any of the checks fail.
The second argument is optional and passes a maximum. (All elements of) the first argument has to be less or equal to this max.
The third argument is optional and passes a minimum. (All elements of) the first argument has to be greater or equal to this min. If, and only if, a minimum is given, the second argument may be an empty string or undef, which will be handled to just check if (all elements of) the first argument are greater or equal to the given minimum.
It will fail if the first argument is not an integer or array of integers, and if arg 2 and arg 3 are not convertable to an integer.
The following values will pass:
validate_integer(1)
validate_integer(1, 2)
validate_integer(1, 1)
validate_integer(1, 2, 0)
validate_integer(2, 2, 2)
validate_integer(2, '', 0)
validate_integer(2, undef, 0)
$foo = undef
validate_integer(2, $foo, 0)
validate_integer([1,2,3,4,5], 6)
validate_integer([1,2,3,4,5], 6, 0)
-
Plus all of the above, but any combination of values passed as strings ('1' or "1").
-
Plus all of the above, but with (correct) combinations of negative integer values.
The following values will fail, causing compilation to abort:
validate_integer(true) validate_integer(false) validate_integer(7.0) validate_integer({ 1 => 2 }) $foo = undef validate_integer($foo) validate_integer($foobaridontexist) validate_integer(1, 0) validate_integer(1, true) validate_integer(1, '') validate_integer(1, undef) validate_integer(1, , 0) validate_integer(1, 2, 3) validate_integer(1, 3, 2) validate_integer(1, 3, true)
-
Plus all of the above, but any combination of values passed as strings ('false' or "false").
-
Plus all of the above, but with incorrect combinations of negative integer values.
-
Plus all of the above, but with non-integer items in arrays or maximum / minimum argument.
Type: statement.
validate_numeric
Validates that the first argument is a numeric value (or an array of numeric values). Aborts catalog compilation if any of the checks fail.
The second argument is optional and passes a maximum. (All elements of) the first argument has to be less or equal to this max.
The third argument is optional and passes a minimum. (All elements of) the first argument has to be greater or equal to this min. If, and only if, a minimum is given, the second argument may be an empty string or undef, which will be handled to just check if (all elements of) the first argument are greater or equal to the given minimum.
It will fail if the first argument is not a numeric (Integer or Float) or array of numerics, and if arg 2 and arg 3 are not convertable to a numeric.
For passing and failing usage, see validate_integer()
. It is all the same for validate_numeric, yet now floating point values are allowed, too.
Type: statement.
validate_re
Performs simple validation of a string against one or more regular expressions. The first argument of this function should be the string to test, and the second argument should be a stringified regular expression (without the // delimiters) or an array of regular expressions. If none of the regular expressions match the string passed in, compilation aborts with a parse error.
You can pass a third argument as the error message raised and shown to the user.
The following strings validate against the regular expressions:
validate_re('one', '^one$')
validate_re('one', [ '^one', '^two' ])
The following string fails to validate, causing compilation to abort:
validate_re('one', [ '^two', '^three' ])
To set the error message:
validate_re($::puppetversion, '^2.7', 'The $puppetversion fact value does not match 2.7')
Type: statement.
validate_slength
Validates that the first argument is a string (or an array of strings), and is less than or equal to the length of the second argument. It fails if the first argument is not a string or array of strings, or if arg 2 is not convertable to a number. Optionally, a minimum string length can be given as the third argument.
The following values pass:
validate_slength("discombobulate",17)
validate_slength(["discombobulate","moo"],17)
validate_slength(["discombobulate","moo"],17,3)
The following values fail:
validate_slength("discombobulate",1)
validate_slength(["discombobulate","thermometer"],5)
validate_slength(["discombobulate","moo"],17,10)
Type: statement.
validate_string
Validates that all passed values are string data structures. Aborts catalog compilation if any value fails this check.
The following values pass:
$my_string = "one two"
validate_string($my_string, 'three')
The following values fail, causing compilation to abort:
validate_string(true)
validate_string([ 'some', 'array' ])
Note: validate_string(undef) will not fail in this version of the functions API (incl. current and future parser).
Instead, use:
if $var == undef {
fail('...')
}
Type: statement.
values
Returns the values of a given hash. For example, given $hash = {'a'=1, 'b'=2, 'c'=3} values($hash)
returns [1,2,3].
Type: rvalue.
values_at
Finds values inside an array based on location. The first argument is the array you want to analyze, and the second argument can be a combination of:
-
A single numeric index
-
A range in the form of 'start-stop' (eg. 4-9)
-
An array combining the above
For example,
values_at(['a','b','c'], 2)
returns ['c'];values_at(['a','b','c'], ["0-1"])
returns ['a','b']; andvalues_at(['a','b','c','d','e'], [0, "2-3"])
returns ['a','c','d'].
Type: rvalue.
zip
Takes one element from first array given and merges corresponding elements from second array given. This generates a sequence of n-element arrays, where n is one more than the count of arguments. For example, zip(['1','2','3'],['4','5','6'])
results in ["1", "4"], ["2", "5"], ["3", "6"]. Type: rvalue.
##Limitations
As of Puppet Enterprise 3.7, the stdlib module is no longer included in PE. PE users should install the most recent release of stdlib for compatibility with Puppet modules.
###Version Compatibility
Versions | Puppet 2.6 | Puppet 2.7 | Puppet 3.x | Puppet 4.x |
---|---|---|---|---|
stdlib 2.x | yes | yes | no | no |
stdlib 3.x | no | yes | yes | no |
stdlib 4.x | no | yes | yes | no |
stdlib 4.6+ | no | yes | yes | yes |
stdlib 5.x | no | no | yes | yes |
stdlib 5.x: When released, stdlib 5.x will drop support for Puppet 2.7.x. Please see this discussion.
##Development
Puppet Labs modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can’t access the huge number of platforms and myriad hardware, software, and deployment configurations that Puppet is intended to serve. We want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things. For more information, see our module contribution guide.
To report or research a bug with any part of this module, please go to http://tickets.puppetlabs.com/browse/PUP.
##Contributors
The list of contributors can be found at: https://github.com/puppetlabs/puppetlabs-stdlib/graphs/contributors
Types in this module release
Supported Release 4.9.1
###Summary
Small release for support of newer PE versions. This increments the version of PE in the metadata.json file.
##2015-09-08 - Supported Release 4.9.0 ###Summary
This release adds new features including the new functions dos2unix, unix2dos, try_get_value, convert_base as well as other features and improvements.
####Features
- (MODULES-2370) allow
match
parameter to influenceensure => absent
behavior - (MODULES-2410) Add new functions dos2unix and unix2dos
- (MODULE-2456) Modify union to accept more than two arrays
- Adds a convert_base function, which can convert numbers between bases
- Add a new function "try_get_value"
####Bugfixes
- n/a
####Improvements
- (MODULES-2478) Support root_home fact on AIX through "lsuser" command
- Acceptance test improvements
- Unit test improvements
- Readme improvements
2015-08-10 - Supported Release 4.8.0
Summary
This release adds a function for reading metadata.json from any module, and expands file_line's abilities.
Features
- New parameter
replace
onfile_line
- New function
load_module_metadata()
to load metadata.json and return the content as a hash. - Added hash support to
size()
Bugfixes
- Fix various docs typos
- Fix
file_line
resource on puppet < 3.3
##2015-06-22 - Supported Release 4.7.0 ###Summary
Adds Solaris 12 support along with improved Puppet 4 support. There are significant test improvements, and some minor fixes.
####Features
- Add support for Solaris 12
####Bugfixes
- Fix for AIO Puppet 4
- Fix time for ruby 1.8.7
- Specify rspec-puppet version
- range() fix for typeerror and missing functionality
- Fix pw_hash() on JRuby < 1.7.17
- fqdn_rand_string: fix argument error message
- catch and rescue from looking up non-existent facts
- Use puppet_install_helper, for Puppet 4
####Improvements
- Enforce support for Puppet 4 testing
- fqdn_rotate/fqdn_rand_string acceptance tests and implementation
- Simplify mac address regex
- validate_integer, validate_numeric: explicitely reject hashes in arrays
- Readme edits
- Remove all the pops stuff for rspec-puppet
- Sync via modulesync
- Add validate_slength optional 3rd arg
- Move tests directory to examples directory
##2015-04-14 - Supported Release 4.6.0 ###Summary
Adds functions and function argument abilities, and improves compatibility with the new puppet parser
####Features
- MODULES-444:
concat()
can now take more than two arrays basename()
added to have Ruby File.basename functionalitydelete()
can now take an array of items to removeprefix()
can now take a hashupcase()
can now take a hash or array of upcaseable thingsvalidate_absolute_path()
can now take an arrayvalidate_cmd()
can now use % in the command to embed the validation file argument in the string- MODULES-1473: deprecate
type()
function in favor oftype3x()
- MODULES-1473: Add
type_of()
to give better type information on future parser - Deprecate
private()
forassert_private()
due to future parser - Adds
ceiling()
to take the ceiling of a number - Adds
fqdn_rand_string()
to generate random string based on fqdn - Adds
pw_hash()
to generate password hashes - Adds
validate_integer()
- Adds
validate_numeric()
(likevalidate_integer()
but also accepts floats)
####Bugfixes
- Fix seeding of
fqdn_rotate()
ensure_resource()
is more verbose on debug mode- Stricter argument checking for
dirname()
- Fix
is_domain_name()
to better match RFC - Fix
uriescape()
when called with array - Fix
file_line
resource when using theafter
attribute withmatch
##2015-01-14 - Supported Release 4.5.1 ###Summary
This release changes the temporary facter_dot_d cache locations outside of the /tmp directory due to a possible security vunerability. CVE-2015-1029
####Bugfixes
- Facter_dot_d cache will now be stored in puppet libdir instead of tmp
##2014-12-15 - Supported Release 4.5.0 ###Summary
This release improves functionality of the member function and adds improved future parser support.
####Features
- MODULES-1329: Update member() to allow the variable to be an array.
- Sync .travis.yml, Gemfile, Rakefile, and CONTRIBUTING.md via modulesync
####Bugfixes
- Fix range() to work with numeric ranges with the future parser
- Accurately express SLES support in metadata.json (was missing 10SP4 and 12)
- Don't require
line
to match thematch
parameter
##2014-11-10 - Supported Release 4.4.0 ###Summary This release has an overhauled readme, new private manifest function, and fixes many future parser bugs.
####Features
- All new shiny README
- New
private()
function for making private manifests (yay!)
####Bugfixes
- Code reuse in
bool2num()
andzip()
- Fix many functions to handle
generate()
no longer returning a string on new puppets concat()
no longer modifies the first argument (whoops)- strict variable support for
getvar()
,member()
,values_at
, andhas_interface_with()
to_bytes()
handles PB and EB now- Fix
tempfile
ruby requirement forvalidate_augeas()
andvalidate_cmd()
- Fix
validate_cmd()
for windows - Correct
validate_string()
docs to reflect non-handling ofundef
- Fix
file_line
matching on older rubies
##2014-07-15 - Supported Release 4.3.2 ###Summary
This release merely updates metadata.json so the module can be uninstalled and upgraded via the puppet module command.
##2014-07-14 - Supported Release 4.3.1
Summary
This supported release updates the metadata.json to work around upgrade behavior of the PMT.
Bugfixes
- Synchronize metadata.json with PMT-generated metadata to pass checksums
##2014-06-27 - Supported Release 4.3.0
Summary
This release is the first supported release of the stdlib 4 series. It remains backwards-compatible with the stdlib 3 series. It adds two new functions, one bugfix, and many testing updates.
Features
- New
bool2str()
function - New
camelcase()
function
Bugfixes
- Fix
has_interface_with()
when interfaces fact is nil
##2014-06-04 - Release 4.2.2
Summary
This release adds PE3.3 support in the metadata and fixes a few tests.
2014-05-08 - Release - 4.2.1
Summary
This release moves a stray symlink that can cause problems.
2014-05-08 - Release - 4.2.0
Summary
This release adds many new functions and fixes, and continues to be backwards compatible with stdlib 3.x
Features
- New
base64()
function - New
deep_merge()
function - New
delete_undef_values()
function - New
delete_values()
function - New
difference()
function - New
intersection()
function - New
is_bool()
function - New
pick_default()
function - New
union()
function - New
validate_ipv4_address
function - New
validate_ipv6_address
function - Update
ensure_packages()
to take an option hash as a second parameter. - Update
range()
to take an optional third argument for range step - Update
validate_slength()
to take an optional third argument for minimum length - Update
file_line
resource to takeafter
andmultiple
attributes
Bugfixes
- Correct
is_string
,is_domain_name
,is_array
,is_float
, andis_function_available
for parsing odd types such as bools and hashes. - Allow facts.d facts to contain
=
in the value - Fix
root_home
fact on darwin systems - Fix
concat()
to work with a second non-array argument - Fix
floor()
to work with integer strings - Fix
is_integer()
to return true if passed integer strings - Fix
is_numeric()
to return true if passed integer strings - Fix
merge()
to work with empty strings - Fix
pick()
to raise the correct error type - Fix
uriescape()
to use the default URI.escape list - Add/update unit & acceptance tests.
##2014-03-04 - Supported Release - 3.2.1 ###Summary This is a supported release
####Bugfixes
- Fixed
is_integer
/is_float
/is_numeric
for checking the value of arithmatic expressions.
####Known bugs
- No known bugs
2013-05-06 - Jeff McCune jeff@puppetlabs.com - 4.1.0
- (#20582) Restore facter_dot_d to stdlib for PE users (3b887c8)
- (maint) Update Gemfile with GEM_FACTER_VERSION (f44d535)
2013-05-06 - Alex Cline acline@us.ibm.com - 4.1.0
- Terser method of string to array conversion courtesy of ethooz. (d38bce0)
2013-05-06 - Alex Cline acline@us.ibm.com 4.1.0
- Refactor ensure_resource expectations (b33cc24)
2013-05-06 - Alex Cline acline@us.ibm.com 4.1.0
- Changed str-to-array conversion and removed abbreviation. (de253db)
2013-05-03 - Alex Cline acline@us.ibm.com 4.1.0
- (#20548) Allow an array of resource titles to be passed into the ensure_resource function (e08734a)
2013-05-02 - Raphaël Pinson raphael.pinson@camptocamp.com - 4.1.0
- Add a dirname function (2ba9e47)
2013-04-29 - Mark Smith-Guerrero msmithgu@gmail.com - 4.1.0
- (maint) Fix a small typo in hash() description (928036a)
2013-04-12 - Jeff McCune jeff@puppetlabs.com - 4.0.2
- Update user information in gemspec to make the intent of the Gem clear.
2013-04-11 - Jeff McCune jeff@puppetlabs.com - 4.0.1
- Fix README function documentation (ab3e30c)
2013-04-11 - Jeff McCune jeff@puppetlabs.com - 4.0.0
- stdlib 4.0 drops support with Puppet 2.7
- stdlib 4.0 preserves support with Puppet 3
2013-04-11 - Jeff McCune jeff@puppetlabs.com - 4.0.0
- Add ability to use puppet from git via bundler (9c5805f)
2013-04-10 - Jeff McCune jeff@puppetlabs.com - 4.0.0
- (maint) Make stdlib usable as a Ruby GEM (e81a45e)
2013-04-10 - Erik Dalén dalen@spotify.com - 4.0.0
- Add a count function (f28550e)
2013-03-31 - Amos Shapira ashapira@atlassian.com - 4.0.0
- (#19998) Implement any2array (7a2fb80)
2013-03-29 - Steve Huff shuff@vecna.org - 4.0.0
- (19864) num2bool match fix (8d217f0)
2013-03-20 - Erik Dalén dalen@spotify.com - 4.0.0
- Allow comparisons of Numeric and number as String (ff5dd5d)
2013-03-26 - Richard Soderberg rsoderberg@mozilla.com - 4.0.0
- add suffix function to accompany the prefix function (88a93ac)
2013-03-19 - Kristof Willaert kristof.willaert@gmail.com - 4.0.0
- Add floor function implementation and unit tests (0527341)
2012-04-03 - Eric Shamow eric@puppetlabs.com - 4.0.0
- (#13610) Add is_function_available to stdlib (961dcab)
2012-12-17 - Justin Lambert jlambert@eml.cc - 4.0.0
- str2bool should return a boolean if called with a boolean (5d5a4d4)
2012-10-23 - Uwe Stuehler ustuehler@team.mobile.de - 4.0.0
- Fix number of arguments check in flatten() (e80207b)
2013-03-11 - Jeff McCune jeff@puppetlabs.com - 4.0.0
- Add contributing document (96e19d0)
2013-03-04 - Raphaël Pinson raphael.pinson@camptocamp.com - 4.0.0
- Add missing documentation for validate_augeas and validate_cmd to README.markdown (a1510a1)
2013-02-14 - Joshua Hoblitt jhoblitt@cpan.org - 4.0.0
- (#19272) Add has_element() function (95cf3fe)
2013-02-07 - Raphaël Pinson raphael.pinson@camptocamp.com - 4.0.0
- validate_cmd(): Use Puppet::Util::Execution.execute when available (69248df)
2012-12-06 - Raphaël Pinson raphink@gmail.com - 4.0.0
- Add validate_augeas function (3a97c23)
2012-12-06 - Raphaël Pinson raphink@gmail.com - 4.0.0
- Add validate_cmd function (6902cc5)
2013-01-14 - David Schmitt david@dasz.at - 4.0.0
- Add geppetto project definition (b3fc0a3)
2013-01-02 - Jaka Hudoklin jakahudoklin@gmail.com - 4.0.0
- Add getparam function to get defined resource parameters (20e0e07)
2013-01-05 - Jeff McCune jeff@puppetlabs.com - 4.0.0
- (maint) Add Travis CI Support (d082046)
2012-12-04 - Jeff McCune jeff@puppetlabs.com - 4.0.0
- Clarify that stdlib 3 supports Puppet 3 (3a6085f)
2012-11-30 - Erik Dalén dalen@spotify.com - 4.0.0
- maint: style guideline fixes (7742e5f)
2012-11-09 - James Fryman james@frymanet.com - 4.0.0
- puppet-lint cleanup (88acc52)
2012-11-06 - Joe Julian me@joejulian.name - 4.0.0
- Add function, uriescape, to URI.escape strings. Redmine #17459 (fd52b8d)
2012-09-18 - Chad Metcalf chad@wibidata.com - 3.2.0
- Add an ensure_packages function. (8a8c09e)
2012-11-23 - Erik Dalén dalen@spotify.com - 3.2.0
- (#17797) min() and max() functions (9954133)
2012-05-23 - Peter Meier peter.meier@immerda.ch - 3.2.0
- (#14670) autorequire a file_line resource's path (dfcee63)
2012-11-19 - Joshua Harlan Lifton lifton@puppetlabs.com - 3.2.0
- Add join_keys_to_values function (ee0f2b3)
2012-11-17 - Joshua Harlan Lifton lifton@puppetlabs.com - 3.2.0
- Extend delete function for strings and hashes (7322e4d)
2012-08-03 - Gary Larizza gary@puppetlabs.com - 3.2.0
- Add the pick() function (ba6dd13)
2012-03-20 - Wil Cooley wcooley@pdx.edu - 3.2.0
- (#13974) Add predicate functions for interface facts (f819417)
2012-11-06 - Joe Julian me@joejulian.name - 3.2.0
- Add function, uriescape, to URI.escape strings. Redmine #17459 (70f4a0e)
2012-10-25 - Jeff McCune jeff@puppetlabs.com - 3.1.1
- (maint) Fix spec failures resulting from Facter API changes (97f836f)
2012-10-23 - Matthaus Owens matthaus@puppetlabs.com - 3.1.0
- Add PE facts to stdlib (cdf3b05)
2012-08-16 - Jeff McCune jeff@puppetlabs.com - 3.0.1
- Fix accidental removal of facts_dot_d.rb in 3.0.0 release
2012-08-16 - Jeff McCune jeff@puppetlabs.com - 3.0.0
- stdlib 3.0 drops support with Puppet 2.6
- stdlib 3.0 preserves support with Puppet 2.7
2012-08-07 - Dan Bode dan@puppetlabs.com - 3.0.0
- Add function ensure_resource and defined_with_params (ba789de)
2012-07-10 - Hailee Kenney hailee@puppetlabs.com - 3.0.0
- (#2157) Remove facter_dot_d for compatibility with external facts (f92574f)
2012-04-10 - Chris Price chris@puppetlabs.com - 3.0.0
- (#13693) moving logic from local spec_helper to puppetlabs_spec_helper (85f96df)
2012-10-25 - Jeff McCune jeff@puppetlabs.com - 2.5.1
- (maint) Fix spec failures resulting from Facter API changes (97f836f)
2012-10-23 - Matthaus Owens matthaus@puppetlabs.com - 2.5.0
- Add PE facts to stdlib (cdf3b05)
2012-08-15 - Dan Bode dan@puppetlabs.com - 2.5.0
- Explicitly load functions used by ensure_resource (9fc3063)
2012-08-13 - Dan Bode dan@puppetlabs.com - 2.5.0
- Add better docs about duplicate resource failures (97d327a)
2012-08-13 - Dan Bode dan@puppetlabs.com - 2.5.0
- Handle undef for parameter argument (4f8b133)
2012-08-07 - Dan Bode dan@puppetlabs.com - 2.5.0
- Add function ensure_resource and defined_with_params (a0cb8cd)
2012-08-20 - Jeff McCune jeff@puppetlabs.com - 2.5.0
- Disable tests that fail on 2.6.x due to #15912 (c81496e)
2012-08-20 - Jeff McCune jeff@puppetlabs.com - 2.5.0
- (Maint) Fix mis-use of rvalue functions as statements (4492913)
2012-08-20 - Jeff McCune jeff@puppetlabs.com - 2.5.0
- Add .rspec file to repo root (88789e8)
2012-06-07 - Chris Price chris@puppetlabs.com - 2.4.0
- Add support for a 'match' parameter to file_line (a06c0d8)
2012-08-07 - Erik Dalén dalen@spotify.com - 2.4.0
- (#15872) Add to_bytes function (247b69c)
2012-07-19 - Jeff McCune jeff@puppetlabs.com - 2.4.0
- (Maint) use PuppetlabsSpec::PuppetInternals.scope (master) (deafe88)
2012-07-10 - Hailee Kenney hailee@puppetlabs.com - 2.4.0
- (#2157) Make facts_dot_d compatible with external facts (5fb0ddc)
2012-03-16 - Steve Traylen steve.traylen@cern.ch - 2.4.0
- (#13205) Rotate array/string randomley based on fqdn, fqdn_rotate() (fef247b)
2012-05-22 - Peter Meier peter.meier@immerda.ch - 2.3.3
- fix regression in #11017 properly (f0a62c7)
2012-05-10 - Jeff McCune jeff@puppetlabs.com - 2.3.3
- Fix spec tests using the new spec_helper (7d34333)
2012-05-10 - Puppet Labs support@puppetlabs.com - 2.3.2
- Make file_line default to ensure => present (1373e70)
- Memoize file_line spec instance variables (20aacc5)
- Fix spec tests using the new spec_helper (1ebfa5d)
- (#13595) initialize_everything_for_tests couples modules Puppet ver (3222f35)
- (#13439) Fix MRI 1.9 issue with spec_helper (15c5fd1)
- (#13439) Fix test failures with Puppet 2.6.x (665610b)
- (#13439) refactor spec helper for compatibility with both puppet 2.7 and master (82194ca)
- (#13494) Specify the behavior of zero padded strings (61891bb)
2012-03-29 Puppet Labs support@puppetlabs.com - 2.1.3
- (#11607) Add Rakefile to enable spec testing
- (#12377) Avoid infinite loop when retrying require json
2012-03-13 Puppet Labs support@puppetlabs.com - 2.3.1
- (#13091) Fix LoadError bug with puppet apply and puppet_vardir fact
2012-03-12 Puppet Labs support@puppetlabs.com - 2.3.0
- Add a large number of new Puppet functions
- Backwards compatibility preserved with 2.2.x
2011-12-30 Puppet Labs support@puppetlabs.com - 2.2.1
- Documentation only release for the Forge
2011-12-30 Puppet Labs support@puppetlabs.com - 2.1.2
- Documentation only release for PE 2.0.x
2011-11-08 Puppet Labs support@puppetlabs.com - 2.2.0
- #10285 - Refactor json to use pson instead.
- Maint - Add watchr autotest script
- Maint - Make rspec tests work with Puppet 2.6.4
- #9859 - Add root_home fact and tests
2011-08-18 Puppet Labs support@puppetlabs.com - 2.1.1
- Change facts.d paths to match Facter 2.0 paths.
- /etc/facter/facts.d
- /etc/puppetlabs/facter/facts.d
2011-08-17 Puppet Labs support@puppetlabs.com - 2.1.0
- Add R.I. Pienaar's facts.d custom facter fact
- facts defined in /etc/facts.d and /etc/puppetlabs/facts.d are automatically loaded now.
2011-08-04 Puppet Labs support@puppetlabs.com - 2.0.0
- Rename whole_line to file_line
- This is an API change and as such motivating a 2.0.0 release according to semver.org.
2011-08-04 Puppet Labs support@puppetlabs.com - 1.1.0
- Rename append_line to whole_line
- This is an API change and as such motivating a 1.1.0 release.
2011-08-04 Puppet Labs support@puppetlabs.com - 1.0.0
- Initial stable release
- Add validate_array and validate_string functions
- Make merge() function work with Ruby 1.8.5
- Add hash merging function
- Add has_key function
- Add loadyaml() function
- Add append_line native
2011-06-21 Jeff McCune jeff@puppetlabs.com - 0.1.7
- Add validate_hash() and getvar() functions
2011-06-15 Jeff McCune jeff@puppetlabs.com - 0.1.6
- Add anchor resource type to provide containment for composite classes
2011-06-03 Jeff McCune jeff@puppetlabs.com - 0.1.5
- Add validate_bool() function to stdlib
0.1.4 2011-05-26 Jeff McCune jeff@puppetlabs.com
- Move most stages after main
0.1.3 2011-05-25 Jeff McCune jeff@puppetlabs.com
- Add validate_re() function
0.1.2 2011-05-24 Jeff McCune jeff@puppetlabs.com
- Update to add annotated tag
0.1.1 2011-05-24 Jeff McCune jeff@puppetlabs.com
- Add stdlib::stages class with a standard set of stages
Copyright (C) 2011 Puppet Labs Inc and some parts: Copyright (C) 2011 Krzysztof Wilczynski Puppet Labs can be contacted at: info@puppetlabs.com Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.