Version information
This version is compatible with:
- Puppet Enterprise 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >= 2.7.20 < 7.0.0
- , , , , , , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'puppetlabs-stdlib', '5.2.0'
Learn more about managing modules with a PuppetfileDocumentation
stdlib
Table of Contents
- 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
- Contributors
Module Description
This module provides a standard library of resources for Puppet modules. Puppet modules make heavy use of this standard library. The stdlib module adds the following resources to Puppet:
- Stages
- Facts
- Functions
- Defined types
- Data 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
Install the stdlib module to add the functions, facts, and resources of this standard library to Puppet.
If you are authoring a module that depends on stdlib, be sure to specify dependencies in your metadata.json.
Usage
Most of stdlib's features are automatically loaded by Puppet. To use standardized run stages in Puppet, declare this class in your manifest with include 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.
Defined types
file_line
Ensures that a given line is contained within a file. The implementation matches the full line, including whitespace at the beginning and end. If the line is not contained in the given file, Puppet appends the line to the end of the file to ensure the desired state. Multiple resources can be declared to manage multiple lines in the same file.
Example:
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',
}
In the example above, Puppet ensures that both of the specified lines are contained in the file /etc/sudoers
.
Match Example:
file_line { 'bashrc_proxy':
ensure => present,
path => '/etc/bashrc',
line => 'export HTTP_PROXY=http://squid.puppetlabs.vm:3128',
match => '^export\ HTTP_PROXY\=',
}
In the example above, match
looks for a line beginning with 'export' followed by 'HTTP_PROXY' and replaces it with the value in line.
Match Example:
file_line { 'bashrc_proxy':
ensure => present,
path => '/etc/bashrc',
line => 'export HTTP_PROXY=http://squid.puppetlabs.vm:3128',
match => '^export\ HTTP_PROXY\=',
append_on_no_match => false,
}
In this code example, match
looks for a line beginning with export followed by 'HTTP_PROXY' and replaces it with the value in line. If a match is not found, then no changes are made to the file.
Examples of ensure => absent
:
This type has two behaviors when ensure => absent
is set.
The first is to set match => ...
and match_for_absence => true
. Match looks for a line beginning with 'export', followed by 'HTTP_PROXY', and then deletes it. If multiple lines match, an error is raised unless the multiple => true
parameter is set.
The line => ...
parameter in this example would be accepted but ignored.
For example:
file_line { 'bashrc_proxy':
ensure => absent,
path => '/etc/bashrc',
match => '^export\ HTTP_PROXY\=',
match_for_absence => true,
}
The second way of using ensure => absent
is to specify a line => ...
and no match. When ensuring lines are absent, the default behavior is to remove all lines matching. This behavior can't be disabled.
For example:
file_line { 'bashrc_proxy':
ensure => absent,
path => '/etc/bashrc',
line => 'export HTTP_PROXY=http://squid.puppetlabs.vm:3128',
}
Encoding example:
file_line { "XScreenSaver":
ensure => present,
path => '/root/XScreenSaver'
line => "*lock: 10:00:00",
match => '^*lock:',
encoding => "iso-8859-1",
}
Files with special characters that are not valid UTF-8 give the error message "Invalid byte sequence in UTF-8". In this case, determine the correct file encoding and specify it with the encoding
attribute.
Autorequires: If Puppet is managing the file that contains the line being managed, the file_line
resource autorequires that file.
Parameters
All parameters are optional, unless otherwise noted.
after
Specifies the line after which Puppet adds any new lines using a regular expression. (Existing lines are added in place.)
Values: String containing a regex.
Default value: undef
.
encoding
Specifies the correct file encoding.
Values: String specifying a valid Ruby character encoding.
Default: 'UTF-8'.
ensure
Specifies whether the resource is present.
Values: 'present', 'absent'.
Default value: 'present'.
line
Required.
Sets the line to be added to the file located by the path
parameter.
Values: String.
match
Specifies a regular expression to compare against existing lines in the file; if a match is found, it is replaced rather than adding a new line.
Values: String containing a regex.
Default value: undef
.
match_for_absence
Specifies whether a match should be applied when ensure => absent
. If set to true
and match is set, the line that matches is deleted. If set to false
(the default), match is ignored when ensure => absent
and the value of line
is used instead. Ignored when ensure => present
.
Boolean.
Default value: false
.
multiple
Specifies whether match
and after
can change multiple lines. If set to false
, allows file_line to replace only one line and raises an error if more than one will be replaced. If set to true
, allows file_line to replace one or more lines.
Values: true
, false
.
Default value: false
.
name
Specifies the name to use as the identity of the resource. If you want the resource namevar to differ from the supplied title
of the resource, specify it with name
.
Values: String.
Default value: The value of the title.
path
Required.
Specifies the file in which Puppet ensures the line specified by line
.
Value: String specifying an absolute path to the file.
replace
Specifies whether the resource overwrites an existing line that matches the match
parameter when line
does not otherwise exist.
If set to false
and a line is found matching the match
parameter, the line is not placed in the file.
Boolean.
Default value: true
.
replace_all_matches_not_matching_line
Replaces all lines matched by match
parameter, even if line
already exists in the file.
Default value: false
.
Data types
Stdlib::Absolutepath
A strict absolute path type. Uses a variant of Unixpath and Windowspath types.
Acceptable input examples:
/var/log
/usr2/username/bin:/usr/local/bin:/usr/bin:.
C:\\WINDOWS\\System32
Unacceptable input example:
../relative_path
Stdlib::Ensure::Service
Matches acceptable ensure values for service resources.
Acceptable input examples:
stopped
running
Unacceptable input example:
true
false
Stdlib::Httpsurl
Matches HTTPS URLs. It is a case insensitive match.
Acceptable input example:
https://hello.com
HTTPS://HELLO.COM
Unacceptable input example:
httds://notquiteright.org`
Stdlib::Httpurl
Matches both HTTPS and HTTP URLs. It is a case insensitive match.
Acceptable input example:
https://hello.com
http://hello.com
HTTP://HELLO.COM
Unacceptable input example:
httds://notquiteright.org
Stdlib::MAC
Matches MAC addresses defined in RFC5342.
Stdlib::Unixpath
Matches absolute paths on Unix operating systems.
Acceptable input example:
/usr2/username/bin:/usr/local/bin:/usr/bin:
/var/tmp
Unacceptable input example:
C:/whatever
some/path
../some/other/path
Stdlib::Filemode
Matches octal file modes consisting of one to four numbers and symbolic file modes.
Acceptable input examples:
0644
1777
a=Xr,g=w
Unacceptable input examples:
x=r,a=wx
0999
Stdlib::Windowspath
Matches paths on Windows operating systems.
Acceptable input example:
C:\\WINDOWS\\System32
C:\\
\\\\host\\windows
Valid values: A windows filepath.
Stdlib::Filesource
Matches paths valid values for the source parameter of the Puppet file type.
Acceptable input example:
http://example.com
https://example.com
file:///hello/bla
Valid values: A filepath.
Stdlib::Fqdn
Matches paths on fully qualified domain name.
Acceptable input example:
localhost
example.com
www.example.com
Valid values: Domain name of a server.
Stdlib::Host
Matches a valid host which could be a valid ipv4, ipv6 or fqdn.
Acceptable input example:
localhost
www.example.com
192.0.2.1
Valid values: An IP address or domain name.
Stdlib::Port
Matches a valid TCP/UDP Port number.
Acceptable input examples:
80
443
65000
Valid values: An Integer.
Stdlib::Port::Privileged
Matches a valid TCP/UDP Privileged port i.e. < 1024.
Acceptable input examples:
80
443
1023
Valid values: A number less than 1024.
Stdlib::Port::Unprivileged
Matches a valid TCP/UDP Privileged port i.e. >= 1024.
Acceptable input examples:
1024
1337
65000
Valid values: A number more than or equal to 1024.
Stdlib::Base32
Matches paths a valid base32 string.
Acceptable input example:
ASDASDDASD3453453
asdasddasd3453453=
ASDASDDASD3453453==
Valid values: A base32 string.
Stdlib::Base64
Matches paths a valid base64 string.
Acceptable input example:
asdasdASDSADA342386832/746+=
asdasdASDSADA34238683274/6+
asdasdASDSADA3423868327/46+==
Valid values: A base64 string.
Stdlib::Ipv4
This type is no longer available. To make use of this functionality, use Stdlib::IP::Address::V4.
Stdlib::Ipv6
This type is no longer available. To make use of this functionality, use Stdlib::IP::Address::V6.
Stdlib::Ip_address
This type is no longer available. To make use of this functionality, use Stdlib::IP::Address
Stdlib::IP::Address
Matches any IP address, including both IPv4 and IPv6 addresses. It will match them either with or without an address prefix as used in CIDR format IPv4 addresses.
Examples:
'127.0.0.1' =~ Stdlib::IP::Address # true
'10.1.240.4/24' =~ Stdlib::IP::Address # true
'52.10.10.141' =~ Stdlib::IP::Address # true
'192.168.1' =~ Stdlib::IP::Address # false
'FEDC:BA98:7654:3210:FEDC:BA98:7654:3210' =~ Stdlib::IP::Address # true
'FF01:0:0:0:0:0:0:101' =~ Stdlib::IP::Address # true
Stdlib::IP::Address::V4
Match any string consisting of an IPv4 address in the quad-dotted decimal format, with or without a CIDR prefix. It will not match any abbreviated form (for example, 192.168.1) because these are poorly documented and inconsistently supported.
Examples:
'127.0.0.1' =~ Stdlib::IP::Address::V4 # true
'10.1.240.4/24' =~ Stdlib::IP::Address::V4 # true
'192.168.1' =~ Stdlib::IP::Address::V4 # false
'FEDC:BA98:7654:3210:FEDC:BA98:7654:3210' =~ Stdlib::IP::Address::V4 # false
'12AB::CD30:192.168.0.1' =~ Stdlib::IP::Address::V4 # false
Valid values: An IPv4 address.
Stdlib::IP::Address::V6
Match any string consistenting of an IPv6 address in any of the documented formats in RFC 2373, with or without an address prefix.
Examples:
'127.0.0.1' =~ Stdlib::IP::Address::V6 # false
'10.1.240.4/24' =~ Stdlib::IP::Address::V6 # false
'FEDC:BA98:7654:3210:FEDC:BA98:7654:3210' =~ Stdlib::IP::Address::V6 # true
'FF01:0:0:0:0:0:0:101' =~ Stdlib::IP::Address::V6 # true
'FF01::101' =~ Stdlib::IP::Address::V6 # true
Valid values: An IPv6 address.
Stdlib::IP::Address::Nosubnet
Match the same things as the Stdlib::IP::Address
alias, except it will not match an address that includes an address prefix (for example, it will match '192.168.0.6' but not '192.168.0.6/24').
Valid values: An IP address with no subnet.
Stdlib::IP::Address::V4::CIDR
Match an IPv4 address in the CIDR format. It will only match if the address contains an address prefix (for example, it will match '192.168.0.6/24' but not '192.168.0.6').
Valid values: An IPv4 address with a CIDR provided eg: '192.186.8.101/105'. This will match anything inclusive of '192.186.8.101' to '192.168.8.105'.
Stdlib::IP::Address::V4::Nosubnet
Match an IPv4 address only if the address does not contain an address prefix (for example, it will match '192.168.0.6' but not '192.168.0.6/24').
Valid values: An IPv4 address with no subnet.
Stdlib::IP::Address::V6::Full
Match an IPv6 address formatted in the "preferred form" as documented in section 2.2 of RFC 2373, with or without an address prefix as documented in section 2.3 of RFC 2373.
Stdlib::IP::Address::V6::Alternate
Match an IPv6 address formatted in the "alternative form" allowing for representing the last two 16-bit pieces of the address with a quad-dotted decimal, as documented in section 2.2.1 of RFC 2373. It will match addresses with or without an address prefix as documented in section 2.3 of RFC 2373.
Stdlib::IP::Address::V6::Compressed
Match an IPv6 address which may contain ::
used to compress zeros as documented in section 2.2.2 of RFC 2373. It will match addresses with or without an address prefix as documented in section 2.3 of RFC 2373.
Stdlib::IP::Address::V6::Nosubnet
Alias to allow Stdlib::IP::Address::V6::Nosubnet::Full
, Stdlib::IP::Address::V6::Nosubnet::Alternate
and Stdlib::IP::Address::V6::Nosubnet::Compressed
.
Stdlib::IP::Address::V6::Nosubnet::Full
Match an IPv6 address formatted in the "preferred form" as documented in section 2.2 of RFC 2373. It will not match addresses with address prefix as documented in section 2.3 of RFC 2373.
Stdlib::IP::Address::V6::Nosubnet::Alternate
Match an IPv6 address formatted in the "alternative form" allowing for representing the last two 16-bit pieces of the address with a quad-dotted decimal, as documented in section 2.2.1 of RFC 2373. It will only match addresses without an address prefix as documented in section 2.3 of RFC 2373.
Stdlib::IP::Address::V6::Nosubnet::Compressed
Match an IPv6 address which may contain ::
used to compress zeros as documented in section 2.2.2 of RFC 2373. It will only match addresses without an address prefix as documented in section 2.3 of RFC 2373.
Stdlib::IP::Address::V6::CIDR
Match an IPv6 address in the CIDR format. It will only match if the address contains an address prefix (for example, it will match 'FF01:0:0:0:0:0:0:101/32', 'FF01::101/60', '::/0', but not 'FF01:0:0:0:0:0:0:101', 'FF01::101', '::').
Facts
package_provider
Returns the default provider Puppet uses to manage packages on this system.
is_pe
Returns whether Puppet Enterprise is installed. Does not report anything on platforms newer than PE 3.x.
pe_version
Returns the version of Puppet Enterprise installed. Does not report anything on platforms newer than PE 3.x.
pe_major_version
Returns the major version Puppet Enterprise that is installed. Does not report anything on platforms newer than PE 3.x.
pe_minor_version
Returns the minor version of Puppet Enterprise that is installed. Does not report anything on platforms newer than PE 3.x.
pe_patch_version
Returns the patch version of Puppet Enterprise that is installed.
puppet_vardir
Returns the value of the Puppet vardir setting for the node running Puppet or Puppet agent.
puppet_environmentpath
Returns the value of the Puppet environment path settings for the node running Puppet or Puppet agent.
puppet_server
Returns the Puppet agent's server
value, which is the hostname of the Puppet master with which the agent should communicate.
root_home
Determines the root home directory.
Determines the root home directory, which depends on your operating system. Generally this is '/root'.
service_provider
Returns the default provider Puppet uses to manage services on this system
Functions
abs
Deprecated: This function has been replaced with a built-in abs
function as of Puppet 6.0.0.
Returns the absolute value of a number. For example, '-34.56' becomes '34.56'.
Argument: A single argument of either an integer or float value.
Type: rvalue.
any2array
Converts any object to an array containing that object. Converts empty argument lists are to empty arrays. Hashes are converted to arrays of alternating keys and values. Arrays are not touched.
Since Puppet 5.0.0, you can create new values of almost any datatype using the type system — you can use the built-in Array.new
function to create a new array:
$hsh = {'key' => 42, 'another-key' => 100}
notice(Array($hsh))
Would notice [['key', 42], ['another-key', 100]]
The array data type also has a special mode to "create an array if not already an array":
notice(Array({'key' => 42, 'another-key' => 100}, true))
Would notice [{'key' => 42, 'another-key' => 100}]
, as the true
flag prevents the hash from being transformed into an array.
Type: rvalue.
any2bool
Converts any object to a Boolean:
- Strings such as 'Y', 'y', '1', 'T', 't', 'TRUE', 'yes', 'true' return
true
. - Strings such as '0', 'F', 'f', 'N', 'n', 'FALSE', 'no', 'false' return
false
. - Booleans return their original value.
- A number (or a string representation of a number) greater than 0 returns
true
, otherwisefalse
. - An undef value returns
false
. - Anything else returns
true
.
See the built-in Boolean.new
Type: rvalue.
assert_private
Sets the current class or definition as private. Calling the class or defined type from outside the current module fails.
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.
base64
Converts a string to and from base64 encoding. Requires an action
('encode', 'decode') and either a plain or base64-encoded string
, and an optional method
('default', 'strict', 'urlsafe').
For backward compatibility, method
is set as default
if not specified.
Note: This function is an implementation of a Ruby class and might not be UTF8 compatible. To ensure compatibility, use this function with Ruby 2.4.0 or greater.
Since Puppet 4.8.0, the Binary
data type can be used to produce base 64 encoded strings.
See the built-in String.new
and Binary.new
functions.
See the built-in binary_file
function for reading a file with binary (non UTF-8) content.
# encode a string as if it was binary
$encodestring = String(Binary('thestring', '%s'))
# decode a Binary assuming it is an UTF-8 String
$decodestring = String(Binary("dGhlc3RyaW5n"), "%s")
Examples:
base64('encode', 'hello')
base64('encode', 'hello', 'default')
# return: "aGVsbG8=\n"
base64('encode', 'hello', 'strict')
# return: "aGVsbG8="
base64('decode', 'aGVsbG8=')
base64('decode', 'aGVsbG8=\n')
base64('decode', 'aGVsbG8=', 'default')
base64('decode', 'aGVsbG8=\n', 'default')
base64('decode', 'aGVsbG8=', 'strict')
# return: "hello"
base64('encode', 'https://puppetlabs.com', 'urlsafe')
# return: "aHR0cHM6Ly9wdXBwZXRsYWJzLmNvbQ=="
base64('decode', 'aHR0cHM6Ly9wdXBwZXRsYWJzLmNvbQ==', 'urlsafe')
# return: "https://puppetlabs.com"
Type: rvalue.
basename
Returns the basename
of a path. An optional argument strips the extension. For example:
basename('/path/to/a/file.ext') => 'file.ext'
basename('relative/path/file.ext') => 'file.ext'
basename('/path/to/a/file.ext', '.ext') => '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.
Argument: a single Boolean or string as an input.
Since Puppet 5.0.0, you can create values for almost any data type using the type system — you can use the built-in Numeric.new
, Integer.new
, and Float.new
functions to convert to numeric values:
notice(Integer(false)) # Notices 0
notice(Float(true)) # Notices 1.0
Type: rvalue.
bool2str
Converts a Boolean to a string using optionally supplied arguments. The optional second and third arguments represent what true and false are converted to respectively. If only one argument is given, it is converted from a Boolean to a string containing true
or false
.
Examples:
bool2str(true) => `true`
bool2str(true, 'yes', 'no') => 'yes'
bool2str(false, 't', 'f') => 'f'
Arguments: Boolean.
Since Puppet 5.0.0, you can create new values for almost any
data type using the type system — you can use the built-in
String.new
function to convert to String, with many different format options:
notice(String(false)) # Notices 'false'
notice(String(true)) # Notices 'true'
notice(String(false, '%y')) # Notices 'yes'
notice(String(true, '%y')) # Notices 'no'
Type: rvalue.
camelcase
Deprecated: This function has been replaced with a built-in camelcase
function as of Puppet 6.0.0.
Converts the case of a string or all strings in an array to CamelCase (mixed case).
Arguments: Either an array or string. Returns the same type of argument as it received, but in CamelCase form.
Note: This function is an implementation of a Ruby class and might not be UTF8 compatible. To ensure compatibility, use this function with Ruby 2.4.0 or greater.
Type: rvalue.
capitalize
Deprecated: This function has been replaced with a built-in capitalize
function as of Puppet 6.0.0.
Capitalizes the first character of a string or array of strings and lowercases the remaining characters of each string.
Arguments: either a single string or an array as an input. Type: rvalue.
Note: This function is an implementation of a Ruby class and might not be UTF8 compatible. To ensure compatibility, use this function with Ruby 2.4.0 or greater.
ceiling
Deprecated: This function has been replaced with a built-in ceiling
function as of Puppet 6.0.0.
Returns the smallest integer greater than or equal to the argument.
Arguments: A single numeric value.
Type: rvalue.
chomp
Deprecated: This function has been replaced with a built-in chomp
function as of Puppet 6.0.0.
Removes the record separator from the end of a string or an array of strings; for example, 'hello\n' becomes 'hello'.
Arguments: a single string or array.
Type: rvalue.
chop
Deprecated: This function has been replaced with a built-in chop
function as of Puppet 6.0.0.
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. To only remove record separators, use the chomp
function.
Arguments: A string or an array of strings as input.
Type: rvalue.
clamp
Keeps value within the range [Min, X, Max] by sort based on integer value (parameter order doesn't matter). Strings are converted and compared numerically. Arrays of values are flattened into a list for further handling. For example:
clamp('24', [575, 187])
returns 187.clamp(16, 88, 661)
returns 88.clamp([4, 3, '99'])
returns 4.
Arguments: strings, arrays, or numerics.
Since Puppet 6.0.0, you can use built-in functions to get the same result:
[$minval, $maxval, $value_to_clamp].sort[1]
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'].
Since Puppet 4.0, you can use the +
operator for concatenation of arrays and merge of hashes, and the <<
operator for appending:
['1','2','3'] + ['4','5','6'] + ['7','8','9'] # returns ['1','2','3','4','5','6','7','8','9']
[1, 2, 3] << 4 # returns [1, 2, 3, 4]
[1, 2, 3] << [4, 5] # returns [1, 2, 3, [4, 5]]
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'
Since Puppet 4.5.0, you can do this with the built-in String.new
function, with various formatting options:
$binary_repr = String(5, '%b') # results in "101"
$hex_repr = String(254, '%x') # results in "fe"
$hex_repr = String(254, '%#x') # results in "0xfe"
count
Takes an array as the first argument and an optional second argument. It counts the number of elements in an array that is equal to the second argument. If called with only an array, it counts the number of elements that are not nil/undef/empty-string.
Note: Equality is tested with a Ruby method. It is subject to what Ruby considers to be equal. For strings, equality is case sensitive.
In Puppet core, counting is done using a combination of the built-in functions
filter
(since Puppet 4.0.0) and
length
(since Puppet 5.5.0, before that in stdlib).
This example shows counting values that are not undef
:
notice([42, "hello", undef].filter |$x| { $x =~ NotUndef }.length)
Would notice 2.
Type: rvalue.
deep_merge
Recursively merges two or more hashes together and returns the resulting hash.
$hash1 = {'one' => 1, 'two' => 2, 'three' => { 'four' => 4 } }
$hash2 = {'two' => 'dos', 'three' => { 'five' => 5 } }
$merged_hash = deep_merge($hash1, $hash2)
The resulting hash is equivalent to:
$merged_hash = { 'one' => 1, 'two' => 'dos', 'three' => { 'four' => 4, 'five' => 5 } }
If there is a duplicate key that is a hash, they are recursively merged. If there is a duplicate key that is not a hash, the key in the rightmost hash takes precedence.
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}.delete(['ab', 'b'], 'b')
returns ['ab'].
Since Puppet 4.0.0, the minus (-
) operator deletes values from arrays and deletes keys from a hash:
['a', 'b', 'c', 'b'] - 'b'
# would return ['a', 'c']
{'a'=>1,'b'=>2,'c'=>3} - ['b','c'])
# would return {'a' => '1'}
You can perform a global delete from a string with the built-in
regsubst
function.
'abracadabra'.regsubst(/bra/, '', 'G')
# would return 'acada'
In general, the built-in
filter
function
can filter out entries from arrays and hashes based on a combination of keys and values.
Type: rvalue.
delete_at
Deletes a determined indexed value from an array.
For example: delete_at(['a','b','c'], 1)
returns ['a','c'].
Since Puppet 4, this can be done with the built-in
filter
function:
['a', 'b', 'c'].filter |$pos, $val | { $pos != 1 } # returns ['a', 'c']
['a', 'b', 'c', 'd'].filter |$pos, $val | { $pos % 2 != 0 } # returns ['b', 'd']
Or, if you want to delete from the beginning or the end of the array — or from both ends at the same time — use the slice operator [ ]
:
$array[0, -1] # the same as all the values
$array[2, -1] # all but the first 2 elements
$array[0, -3] # all but the last 2 elements
$array[1, -2] # all but the first and last element
Type: rvalue.
delete_regex
Deletes all instances of a given element from an array or hash that match a provided regular expression. A string is treated as a one-item array.
Note: This function is an implementation of a Ruby class and might not be UTF8 compatible. To ensure compatibility, use this function with Ruby 2.4.0 or greater.
For example:
delete_regex(['a','b','c','b'], 'b')
returns ['a','c'].delete_regex({'a' => 1,'b' => 2,'c' => 3},['b','c'])
returns {'a'=> 1}.delete_regex(['abf', 'ab', 'ac'], '^ab.*')
returns ['ac'].delete_regex(['ab', 'b'], 'b')
returns ['ab'].
Since Puppet 4.0.0, do the equivalent with the built-in
filter
function:
["aaa", "aba", "aca"].filter |$val| { $val !~ /b/ }
# Would return: ['aaa', 'aca']
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'}
Since Puppet 4.0.0, do the equivalent with the built-in
filter
function:
$array.filter |$val| { $val != 'B' }
$hash.filter |$key, $val| { $val != 'B' }
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}.
Since Puppet 4.0.0, do the equivalent with the built-in
filter
function:
$array.filter |$val| { $val =~ NotUndef }
$hash.filter |$key, $val| { $val =~ NotUndef }
Type: rvalue.
deprecation
Prints deprecation warnings and logs a warning once for a given key:
deprecation(key, message)
Arguments:
- A string specifying the key: To keep the number of messages low during the lifetime of a Puppet process, only one message per key is logged.
- A string specifying the message: the text to be logged.
Type: Statement.
Settings that affect deprecation
Other settings in Puppet affect the stdlib deprecation
function:
-
error
: Fails immediately with the deprecation messageoff
: Output emits no messages.warning
: Logs all warnings. This is the default setting.
-
The environment variable
STDLIB_LOG_DEPRECATIONS
Specifies whether or not to log deprecation warnings. This is especially useful for automated tests to avoid flooding your logs before you are ready to migrate.
This variable is Boolean, with the following effects:
true
: Functions log a warning.false
: No warnings are logged.- No value set: Puppet 4 emits warnings, but Puppet 3 does not.
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"].
Since Puppet 4, the minus (-
) operator in the Puppet language does the same:
['a', 'b', 'c'] - ['b', 'c', 'd']
# would return ['a']
Type: rvalue.
dig
Deprecated: This function has been replaced with a built-in dig
function as of Puppet 4.5.0. Use dig44()
for backwards compatibility or use the new version.
Retrieves a value within multiple layers of hashes and arrays via an array of keys containing a path. The function goes through the structure by each path component and tries to return the value at the end of the path.
In addition to the required path argument, the function accepts the default argument. It is returned if the path is not correct, if no value was found, or if any other error has occurred.
$data = {
'a' => {
'b' => [
'b1',
'b2',
'b3',
]
}
}
$value = dig($data, ['a', 'b', 2])
# $value = 'b3'
# with all possible options
$value = dig($data, ['a', 'b', 2], 'not_found')
# $value = 'b3'
# using the default value
$value = dig($data, ['a', 'b', 'c', 'd'], 'not_found')
# $value = 'not_found'
- $data The data structure we are working with.
- ['a', 'b', 2] The path array.
- 'not_found' The default value. It is returned if nothing is found.
Default value: undef
.
Type: rvalue.
dig44
Retrieves a value within multiple layers of hashes and arrays via an array of keys containing a path. The function goes through the structure by each path component and tries to return the value at the end of the path.
In addition to the required path argument, the function accepts the default argument. It is returned if the path is incorrect, if no value was found, or if any other error has occurred.
$data = {
'a' => {
'b' => [
'b1',
'b2',
'b3',
]
}
}
$value = dig44($data, ['a', 'b', 2])
# $value = 'b3'
# with all possible options
$value = dig44($data, ['a', 'b', 2], 'not_found')
# $value = 'b3'
# using the default value
$value = dig44($data, ['a', 'b', 'c', 'd'], 'not_found')
# $value = 'not_found'
Type: rvalue.
- $data The data structure we are working with.
- ['a', 'b', 2] The path array.
- 'not_found' The default value. It will be returned if nothing is found.
(optional, defaults to
undef
)
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.
file { $config_file:
ensure => file,
content => dos2unix(template('my_module/settings.conf.erb')),
}
See also unix2dos.
Type: rvalue.
downcase
Deprecated: This function has been replaced with a built-in downcase
function as of Puppet 6.0.0.
Converts the case of a string or of all strings in an array to lowercase.
Note: This function is an implementation of a Ruby class and might not be UTF8 compatible. To ensure compatibility, use this function with Ruby 2.4.0 or greater.
Type: rvalue.
empty
Deprecated: This function has been replaced with a built-in empty
function as of Puppet 5.5.0.
Returns true
if the argument is an array or hash that contains no elements, or an empty string. Returns false
when the argument is a numerical value.
Type: rvalue.
enclose_ipv6
Takes an array of IP addresses and encloses the ipv6 addresses with square brackets.
Type: rvalue.
ensure_packages
Takes a list of packages in an array or hash and installs them only if they don't already exist. Optionally takes a hash as a second parameter to be passed as the third argument to the ensure_resource()
or ensure_resources()
function.
Type: statement.
For an array:
ensure_packages(['ksh','openssl'], {'ensure' => 'present'})
For a hash:
ensure_packages({'ksh' => { ensure => '20120801-1' } , 'mypackage' => { source => '/tmp/myrpm-1.0.0.x86_64.rpm', provider => "rpm" }}, {'ensure' => 'present'})
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.
ensure_resources
Creates resource declarations from a hash, but doesn't conflict with resources that are already declared.
Specify a resource type and title and a hash of attributes that describe the resource(s).
user { 'dan':
gid => 'mygroup',
ensure => present,
}
ensure_resources($user)
Pass in a hash of resources. Any listed resources that don't already exist will be created with the type and parameters specified:
ensure_resources('user', {'dan' => { gid => 'mygroup', uid => '600' } , 'alex' => { gid => 'mygroup' }}, {'ensure' => 'present'})
From Hiera backend:
userlist:
dan:
gid: 'mygroup'
uid: '600'
alex:
gid: 'mygroup'
ensure_resources('user', hiera_hash('userlist'), {'ensure' => 'present'})
stdlib::extname
Returns the Extension (the Portion of Filename in Path starting from the last Period).
Example usage:
stdlib::extname('test.rb') => '.rb'
stdlib::extname('a/b/d/test.rb') => '.rb'
stdlib::extname('test') => ''
stdlib::extname('.profile') => ''
Type: rvalue.
fact
Return the value of a given fact. Supports the use of dot-notation for referring to structured facts. If a fact requested does not exist, returns Undef.
Example usage:
fact('kernel')
fact('osfamily')
fact('os.architecture')
Array indexing:
$first_processor = fact('processors.models.0')
$second_processor = fact('processors.models.1')
Fact containing a "." in the fact name:
fact('vmware."VRA.version"')
flatten
Deprecated: This function has been replaced with a built-in flatten
function as of Puppet 5.5.0.
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
Deprecated: This function has been replaced with a built-in floor
function as of Puppet 6.0.0.
Returns the largest integer less than or equal to the argument.
Arguments: A single numeric value.
Type: rvalue.
fqdn_rand_string
Generates a random alphanumeric string, combining the $fqdn
fact and an optional seed for repeatable randomness. Optionally, you can specify a character set for the function (defaults to alphanumeric).
Usage:
fqdn_rand_string(LENGTH, [CHARSET], [SEED])
Examples:
fqdn_rand_string(10)
fqdn_rand_string(10, 'ABCDEF!@#$%^')
fqdn_rand_string(10, '', 'custom seed')
Arguments:
- An integer, specifying the length of the resulting string.
- Optionally, a string specifying the character set.
- Optionally, a string specifying the seed for repeatable randomness.
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.
fqdn_uuid
Returns a RFC 4122 valid version 5 UUID based on an FQDN string under the DNS namespace:
- fqdn_uuid('puppetlabs.com') returns '9c70320f-6815-5fc5-ab0f-debe68bf764c'
- fqdn_uuid('google.com') returns '64ee70a4-8cc1-5d25-abf2-dea6c79a09c8'
Type: rvalue.
get_module_path
Returns the absolute path of the specified module for the current environment.
$module_path = get_module_path('stdlib')
Since Puppet 5.4.0, the built-in module_directory
function does the same thing and will return the path to the first module found, if given multiple values or an array.
Type: rvalue.
getparam
Returns the value of a resource's parameter.
Arguments: A resource reference and the name of the parameter.
Note: User defined resource types are evaluated lazily.
Examples:
# define a resource type with a parameter
define example_resource($param) {
}
# declare an instance of that type
example_resource { "example_resource_instance":
param => "'the value we are getting in this example''"
}
# Because of order of evaluation, a second definition is needed
# that will be evaluated after the first resource has been declared
#
define example_get_param {
# This will notice the value of the parameter
notice(getparam(Example_resource["example_resource_instance"], "param"))
}
# Declare an instance of the second resource type - this will call notice
example_get_param { 'show_notify': }
Would notice: 'the value we are getting in this example'
Since Puppet 4.0.0, you can get a parameter value by using its data type and the [ ] operator. The example below is equivalent to a call to getparam():
Example_resource['example_resource_instance']['param']
getvar
Deprecated: This function has been replaced with a built-in getvar
function as of Puppet 6.0.0. The new version also supports digging into a structured value.
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.
glob
Returns an array of strings of paths matching path patterns.
Arguments: A string or an array of strings specifying path patterns.
$confs = glob(['/etc/**/*.conf', '/opt/**/*.conf'])
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'].
Since Puppet 4.0.0, the built-in filter
function does the "same" — as any logic can be used to filter, as opposed to just regular expressions:
['aaa', 'bbb', 'ccc', 'aaaddd']. filter |$x| { $x =~ 'aaa' }
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.
Arguments: A string specifying an IP address.
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.
Arguments: A string specifying an IP address.
Type: rvalue.
has_key
Deprecated: This function has been replaced with the built-in operator in
.
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')
}
Since Puppet 4.0.0, this can be achieved in the Puppet language with the following equivalent expression:
$my_hash = {'key_one' => 'value_one'}
if 'key_one' in $my_hash {
notice('this will be printed')
}
Type: rvalue.
hash
Deprecated: This function has been replaced with the built-in ability to create a new value of almost any
data type - see the built-in Hash.new
function
in Puppet.
Converts an array into a hash.
For example (deprecated), hash(['a',1,'b',2,'c',3])
returns {'a'=>1,'b'=>2,'c'=>3}.
For example (built-in), 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_a
Boolean check to determine whether a variable is of a given data type. This is equivalent to the =~
type checks. This function is available only in Puppet 4, or in Puppet 3 with the "future" parser.
foo = 3
$bar = [1,2,3]
$baz = 'A string!'
if $foo.is_a(Integer) {
notify { 'foo!': }
}
if $bar.is_a(Array) {
notify { 'bar!': }
}
if $baz.is_a(String) {
notify { 'baz!': }
}
- See the the Puppet type system for more information about types.
- See the
assert_type()
function for flexible ways to assert the type of a value.
is_absolute_path
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Returns true
if the given path is absolute.
Type: rvalue.
is_array
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Returns true
if the variable passed to this function is an array.
Type: rvalue.
is_bool
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Returns true
if the variable passed to this function is a Boolean.
Type: rvalue.
is_domain_name
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Returns true
if the string passed to this function is a syntactically correct domain name.
Type: rvalue.
is_email_address
Returns true if the string passed to this function is a valid email address.
Type: rvalue.
is_float
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Returns true
if the variable passed to this function is a float.
Type: rvalue.
is_function_available
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
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
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Returns true
if the variable passed to this function is a hash.
Type: rvalue.
is_integer
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Returns true
if the variable returned to this string is an integer.
Type: rvalue.
is_ip_address
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Returns true
if the string passed to this function is a valid IP address.
Type: rvalue.
is_ipv6_address
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Returns true
if the string passed to this function is a valid IPv6 address.
Type: rvalue.
is_ipv4_address
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Returns true
if the string passed to this function is a valid IPv4 address.
Type: rvalue.
is_mac_address
Returns true
if the string passed to this function is a valid MAC address.
Type: rvalue.
is_numeric
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Returns true
if the variable passed to this function is a number.
Type: rvalue.
is_string
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Returns true
if the variable passed to this function is a string.
Type: rvalue.
join
Deprecated: This function has been replaced with a built-in join
function as of Puppet 5.5.0.
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, returning the result as strings.
If a value is an array, the key is prefixed to each element. The return value is a flattened array.
For example, join_keys_to_values({'a'=>1,'b'=>[2,3]}, " is ")
results in ["a is 1","b is 2","b is 3"].
Since Puppet 5.0.0, there is more control over the formatting (including indentations and line breaks, delimiters around arrays and hash entries, between key/values in hash entries, and individual
formatting of values in the array) - see the
built-in String.new
function and its formatting options for Array
and Hash
.
Type: rvalue.
keys
Deprecated: This function has been replaced with a built-in keys
function as of Puppet 5.5.0.
Returns the keys of a hash as an array.
Type: rvalue.
length
Deprecated: This function has been replaced with a built-in length
function as of Puppet 5.5.0.
Returns the length of a given string, array or hash. Replaces the deprecated size()
function.
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')
The second parameter is returned if the file was not found or could not be parsed.
For example:
$myhash = loadyaml('no-file.yaml', {'default'=>'value'})
Type: rvalue.
loadjson
Loads a JSON file containing an array, string, or hash, and returns the data in the corresponding native data type.
For example:
The first parameter can be an absolute file path, or a URL.
$myhash = loadjson('/etc/puppet/data/myhash.json')
The second parameter is returned if the file was not found or could not be parsed.
For example:
$myhash = loadjson('no-file.json', {'default'=>'value'})
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']: }
When a module's metadata file is absent, the catalog compilation fails. To avoid this failure, do the following:
$metadata = load_module_metadata('mysql', true)
if empty($metadata) {
notify { "This module does not have a metadata.json file.": }
}
Type: rvalue.
lstrip
Deprecated: This function has been replaced with a built-in lstrip
function as of Puppet 6.0.0.
Strips spaces to the left of a string.
Type: rvalue.
max
Deprecated: This function has been replaced with a built-in max
function as of Puppet 6.0.0.
Returns the highest value of all arguments. Requires at least one argument.
Arguments: A numeric or a string representing a number.
Type: rvalue.
member
This function determines if a variable is a member of an array. The variable can be a string, an array, or a 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.
Since Puppet 4.0.0, you can perform the same in the Puppet language. For single values,
use the operator in
:
'a' in ['a', 'b'] # true
And for arrays, use the operator -
to compute a diff:
['d', 'b'] - ['a', 'b', 'c'] == [] # false because 'd' is not subtracted
['a', 'b'] - ['a', 'b', 'c'] == [] # true because both 'a' and 'b' are subtracted
Also note that since Puppet 5.2.0, the general form to test the content of an array or hash is to use the built-in any
and all
functions.
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 takes precedence.
Since Puppet 4.0.0, you can use the + operator to achieve the same merge.
$merged_hash = $hash1 + $hash2
Type: rvalue.
min
Deprecated: This function has been replaced with a built-in min
function as of Puppet 6.0.0.
Returns the lowest value of all arguments. Requires at least one argument.
Arguments: A numeric or a string representing a number.
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 zero become true
.
Since Puppet 5.0.0, the same can be achieved with the Puppet type system.
See the Boolean.new
function in Puppet for the many available type conversions.
Boolean(0) # false
Boolean(1) # true
Type: rvalue.
os_version_gte
Checks to see if the OS version is at least a certain version. Note that only the major version is taken into account.
Example usage:
if os_version_gte('Debian', '9') { }
if os_version_gte('Ubuntu', '18.04') { }
Returns:
- Boolean(0) # When OS is below the given version.
- Boolean(1) # When OS is equal to or greater than the given version.
parsejson
Converts a string of JSON into the correct Puppet structure (as a hash, array, string, integer, or a combination of such).
Arguments:
- The JSON string to convert, as a first argument.
- Optionally, the result to return if conversion fails, as a second error.
Type: rvalue.
parseyaml
Converts a string of YAML into the correct Puppet structure.
Arguments:
- The YAML string to convert, as a first argument.
- Optionally, the result to return if conversion fails, as a second error.
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.
pick_default
Returns the first value in a list of values. Unlike the pick()
function, pick_default()
does not fail if all arguments are empty. This allows it to use an empty value as default.
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'}.
Since Puppet 4.0.0, modify values in array by using the built-in map
function.
This example does the same as the first example above:
['a', 'b', 'c'].map |$x| { "p${x}" }
Type: rvalue.
pry
Invokes a pry debugging session in the current scope object. Useful for debugging manifest code at specific points during a compilation. Should be used only when running puppet apply
or running a Puppet master in the foreground. Requires the pry
gem to be installed in Puppet's rubygems.
Examples:
pry()
In a pry session, useful commands include:
- Run
catalog
to see the contents currently compiling catalog. - Run
cd catalog
andls
to see catalog methods and instance variables. - Run
@resource_table
to see the current catalog resource table.
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.
This function 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.
Type: rvalue.
Note: This function is an implementation of a Ruby class and might not be UTF8 compatible. To ensure compatibility, use this function with Ruby 2.4.0 or greater.
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"].range("host01", "host10")
returns ["host01", "host02", ..., "host09", "host10"].
You must explicitly include trailing zeros, or the underlying Ruby function fails.
Passing a third argument causes the generated range to step by that interval. For example:
range("0", "9", "2")
returns ["0","2","4","6","8"].
Note: The Puppet language supports
Integer
andFloat
ranges by using the type system. They are suitable for iterating a given number of times.
See the built-in step
function in Puppet for skipping values.
Integer[0, 9].each |$x| { notice($x) } # notices 0, 1, 2, ... 9
Type: rvalue.
regexpescape
Regexp escape a string or array of strings. Requires either a single string or an array as an input.
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'].
Since Puppet 4.0.0, the same is true with the built-in filter
function in Puppet.
The equivalent of the stdlib reject
function:
['aaa','bbb','ccc','aaaddd'].filter |$x| { $x !~ /aaa/ }
Type: rvalue.
reverse
Reverses the order of a string or array.
Note: The same can be done with the built-in
reverse_each
function in Puppet.
round
Deprecated: This function has been replaced with a built-in round
function as of Puppet 6.0.0.
Rounds a number to the nearest integer.
Type: rvalue.
rstrip
Deprecated: This function has been replaced with a built-in rstrip
function as of Puppet 6.0.0.
Strips spaces to the right of the string.
Type: rvalue.
seeded_rand
Takes an integer max value and a string seed value and returns a repeatable random integer smaller than max. Similar to fqdn_rand
, but does not add node specific data to the seed.
Type: rvalue.
seeded_rand_string
Generates a consistent (based on seed value) random string. Useful for generating matching passwords for different hosts.
shell_escape
Escapes a string so that it can be safely used in a Bourne shell command line. Note that the resulting string should be used unquoted and is not intended for use in either double or single quotes. This function behaves the same as Ruby's Shellwords.shellescape()
function; see the Ruby documentation.
For example:
shell_escape('foo b"ar') => 'foo\ b\"ar'
Type: rvalue.
shell_join
Builds a command line string from a given array of strings. Each array item is escaped for Bourne shell. All items are then joined together, with a single space in between. This function behaves the same as Ruby's Shellwords.shelljoin()
function; see the Ruby documentation.
For example:
shell_join(['foo bar', 'ba"z']) => 'foo\ bar ba\"z'
Type: rvalue.
shell_split
Splits a string into an array of tokens. This function behaves the same as Ruby's Shellwords.shellsplit()
function; see the ruby documentation.
Example:
shell_split('foo\ bar ba\"z') => ['foo bar', 'ba"z']
Type: rvalue.
shuffle
Randomizes the order of a string or array elements.
Type: rvalue.
size
Deprecated: This function has been replaced with a built-in size
function as of Puppet 6.0.0 (size
is now an alias for length
).
Returns the number of elements in a string, an array or a hash. This function will be deprecated in a future release. For Puppet 4, use the length
function.
Type: rvalue.
sprintf_hash
Deprecated: The same functionality can be achieved with the built-in sprintf
function as of Puppet 4.10.10 and 5.3.4. This function will be removed in a future release.
Performs printf-style formatting with named references of text.
The first parameter is a format string describing how to format the rest of the parameters in the hash. See Ruby documentation for Kernel::sprintf
for details about this function.
For example:
$output = sprintf_hash('String: %<foo>s / number converted to binary: %<number>b',
{ 'foo' => 'a string', 'number' => 5 })
# $output = 'String: a string / number converted to binary: 101'
Type: rvalue
sort
Deprecated: This function has been replaced with a built-in sort
function as of Puppet 6.0.0.
Sorts strings and arrays lexically.
Type: rvalue.
Note: This function is an implementation of a Ruby class and might not be UTF8 compatible. To ensure compatibility, use this function with Ruby 2.4.0 or greater.
squeeze
Replaces consecutive repeats (such as 'aaaa') in a string with a single character. Returns a new string.
Type: rvalue.
str2bool
Converts certain strings to a Boolean. This attempts to convert strings that contain the values '1', 'true', 't', 'y', or 'yes' to true
. Strings that contain values '0', 'false', 'f', 'n', or 'no', or that are an empty string or undefined are converted to false
. Any other value causes an error. These checks are case insensitive.
Since Puppet 5.0.0, the same can be achieved with the Puppet type system.
See the Boolean.new
function in Puppet for the many available type conversions.
Boolean('false'), Boolean('n'), Boolean('no') # all false
Boolean('true'), Boolean('y'), Boolean('yes') # all true
Type: rvalue.
str2saltedsha512
Converts a string to a salted-SHA512 password hash, used for OS X versions 10.7 or greater. Returns a hex version of a salted-SHA512 password hash, which can be inserted into Puppet manifests as a valid password attribute.
Type: rvalue.
Note: This function is an implementation of a Ruby class and might not be UTF8 compatible. To ensure compatibility, use this function with Ruby 2.4.0 or greater.
strftime
Deprecated: This function has been replaced with a built-in strftime
function as of Puppet 4.8.0.
Returns formatted time.
For example, strftime("%s")
returns the time since Unix epoch, and strftime("%Y-%m-%d")
returns the date.
Arguments: A string specifying the time in strftime
format. See the Ruby strftime documentation for details.
Type: rvalue.
Note: This function is an implementation of a Ruby class and might not be UTF8 compatible. To ensure compatibility, use this function with Ruby 2.4.0 or greater.
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 (for example +0900)%Z
: Time zone name%%
: Literal '%' character
strip
Deprecated: This function has been replaced with a built-in strip
function as of Puppet 6.0.0.
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 or to all keys in a hash.
For example:
suffix(['a','b','c'], 'p')
returns ['ap','bp','cp'].suffix({'a'=>'b','b'=>'c','c'=>'d'}, 'p')
returns {'ap'=>'b','bp'=>'c','cp'=>'d'}.
Note that since Puppet 4.0.0, you can modify values in an array using the built-in map
function. This example does the same as the first example above:
['a', 'b', 'c'].map |$x| { "${x}p" }
Type: rvalue.
swapcase
Swaps the existing case of a string. For example, swapcase("aBcD")
results in "AbCd".
Type: rvalue.
Note: This function is an implementation of a Ruby class and might not be UTF8 compatible. To ensure compatibility, use this function with Ruby 2.4.0 or greater.
time
Returns the current Unix epoch time as an integer.
For example, time()
returns something like '1311972653'.
Since Puppet 4.8.0, the Puppet language has the data types Timestamp
(a point in time) and Timespan
(a duration). The following example is equivalent to calling time()
without any arguments:
Timestamp()
Type: rvalue.
to_bytes
Converts the argument into bytes.
For example, "4 kB" becomes "4096".
Arguments: A single string.
Type: rvalue.
to_json
Converts input into a JSON String.
For example, { "key" => "value" }
becomes {"key":"value"}
.
Type: rvalue.
to_json_pretty
Converts input into a pretty JSON String.
For example, { "key" => "value" }
becomes {\n \"key\": \"value\"\n}
.
Type: rvalue.
to_yaml
Converts input into a YAML String.
For example, { "key" => "value" }
becomes "---\nkey: value\n"
.
Type: rvalue.
try_get_value
Deprecated: Replaced by dig()
.
Retrieves a value within multiple layers of hashes and arrays.
Arguments:
-
A string containing a path, as the first argument. Provide this argument as a string of hash keys or array indexes starting with zero and separated by the path separator character (default "/"). This function goes through the structure by each path component and tries to return the value at the end of the path.
-
A default argument as a second argument. This argument is returned if the path is not correct, if no value was found, or if any other error has occurred.
-
The path separator character as a last argument.
$data = {
'a' => {
'b' => [
'b1',
'b2',
'b3',
]
}
}
$value = try_get_value($data, 'a/b/2')
# $value = 'b3'
# with all possible options
$value = try_get_value($data, 'a/b/2', 'not_found', '/')
# $value = 'b3'
# using the default value
$value = try_get_value($data, 'a/b/c/d', 'not_found')
# $value = 'not_found'
# using custom separator
$value = try_get_value($data, 'a|b', [], '|')
# $value = ['b1','b2','b3']
- $data The data structure we are working with.
- 'a/b/2' The path string.
- 'not_found' The default value. It will be returned if nothing is found.
(optional, defaults to
undef
) - '/' The path separator character. (optional, defaults to '/')
Type: rvalue.
type3x
Deprecated: This function will be removed in a future release.
Returns a string description of the type of a given value. The type can be a string, array, hash, float, integer, or Boolean. For Puppet 4, use the new type system instead.
Arguments:
- string
- array
- hash
- float
- integer
- Boolean
Type: rvalue.
type_of
This function is provided for backwards compatibility, but the built-in type() function provided by Puppet is preferred.
Returns the literal type of a given value. Requires Puppet 4. 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 a given string. 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
Deprecated: This function has been replaced with a built-in upcase
function as of Puppet 6.0.0.
Converts an object, array, or hash of objects to uppercase. Objects to be converted must respond to upcase.
For example, upcase('abcd')
returns 'ABCD'.
Type: rvalue.
Note: This function is an implementation of a Ruby class and might not be UTF8 compatible. To ensure compatibility, use this function with Ruby 2.4.0 or greater.
uriescape
URLEncodes a string or array of strings.
Arguments: Either a single string or an array of strings.
Type: rvalue.
Note: This function is an implementation of a Ruby class and might not be UTF8 compatible. To ensure compatibility, use this function with Ruby 2.4.0 or greater.
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 terminate:
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
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Validates that all passed values are array data structures. Terminates 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 terminate:
validate_array(true)
validate_array('some_string')
$undefined = `undef`
validate_array($undefined)
Type: statement.
validate_augeas
Validates a string using an Augeas lens.
Arguments:
- The string to test, as the first argument.
- The name of the Augeas lens to use, as the second argument.
- Optionally, a list of paths which should not be found in the file, as a third argument.
- Optionally, an error message to raise and show to the user, as a fourth argument.
If Augeas fails to parse the string with the lens, the compilation terminates with a parse error.
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
, include the third argument:
validate_augeas($passwdcontent, 'Passwd.lns', ['$file/foo'])
To raise and display an error message, include the fourth argument:
validate_augeas($sudoerscontent, 'Sudoers.lns', [], 'Failed to validate sudoers content with Augeas')
Type: statement.
validate_bool
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Validates that all passed values are either true
or false
.
Terminates catalog compilation if any value fails this check.
The following values pass:
$iamtrue = true
validate_bool(true)
validate_bool(true, true, false, $iamtrue)
The following values fail, causing compilation to terminate:
$some_array = [ true ]
validate_bool("false")
validate_bool("true")
validate_bool($some_array)
Type: statement.
validate_cmd
Validates a string with an external command.
Arguments:
- The string to test, as the first argument.
- The path to a test command, as the second argument. This argument takes a % as a placeholder for the file path (if no % placeholder is given, defaults to the end of the command). If the command is launched against a tempfile containing the passed string, or returns a non-null value, compilation will terminate with a parse error.
- Optionally, an error message to raise and show to the user, as a third argument.
# 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_domain_name
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Validate that all values passed are syntactically correct domain names. Aborts catalog compilation if any value fails this check.
The following values pass:
$my_domain_name = 'server.domain.tld'
validate_domain_name($my_domain_name)
validate_domain_name('domain.tld', 'puppet.com', $my_domain_name)
The following values fail, causing compilation to abort:
validate_domain_name(1)
validate_domain_name(true)
validate_domain_name('invalid domain')
validate_domain_name('-foo.example.com')
validate_domain_name('www.example.2com')
Type: statement.
validate_email_address
Validate that all values passed are valid email addresses. Fail compilation if any value fails this check.
The following values will pass:
$my_email = "waldo@gmail.com"
validate_email_address($my_email)
validate_email_address("bob@gmail.com", "alice@gmail.com", $my_email)
The following values will fail, causing compilation to abort:
$some_array = [ 'bad_email@/d/efdf.com' ]
validate_email_address($some_array)
Type: statement.
validate_hash
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Validates that all passed values are hash data structures. Terminates 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 terminate:
validate_hash(true)
validate_hash('some_string')
$undefined = `undef`
validate_hash($undefined)
Type: statement.
validate_integer
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Validates an integer or an array of integers. Terminates catalog compilation if any of the checks fail.
Arguments:
- An integer or an array of integers, as the first argument.
- Optionally, a maximum, as the second argument. (All elements of) the first argument must be equal to or less than this maximum.
- Optionally, a minimum, as the third argument. (All elements of) the first argument must be equal to or greater than than this maximum.
This function fails if the first argument is not an integer or array of integers, or if the second or third arguments are not convertable to an integer. However, if (and only if) a minimum is given, the second argument may be an empty string or undef
, which serves as a placeholder to ensure the minimum check.
The following values 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 fail, causing compilation to terminate:
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_ip_address
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Validates that the argument is an IP address, regardless of whether it is an IPv4 or an IPv6 address. It also validates IP address with netmask.
Arguments: A string specifying an IP address.
The following values will pass:
validate_ip_address('0.0.0.0')
validate_ip_address('8.8.8.8')
validate_ip_address('127.0.0.1')
validate_ip_address('194.232.104.150')
validate_ip_address('3ffe:0505:0002::')
validate_ip_address('::1/64')
validate_ip_address('fe80::a00:27ff:fe94:44d6/64')
validate_ip_address('8.8.8.8/32')
The following values will fail, causing compilation to terminate:
validate_ip_address(1)
validate_ip_address(true)
validate_ip_address(0.0.0.256)
validate_ip_address('::1', {})
validate_ip_address('0.0.0.0.0')
validate_ip_address('3.3.3')
validate_ip_address('23.43.9.22/64')
validate_ip_address('260.2.32.43')
validate_legacy
Validates a value against both a specified type and a deprecated validation function. Silently passes if both pass, errors if only one validation passes, and fails if both validations return false.
Arguments:
- The type to check the value against,
- The full name of the previous validation function,
- The value to be checked,
- An unspecified number of arguments needed for the previous validation function.
Example:
validate_legacy('Optional[String]', 'validate_re', 'Value to be validated', ["."])
This function supports updating modules from Puppet 3-style argument validation (using the stdlib validate_*
functions) to Puppet 4 data types, without breaking functionality for those depending on Puppet 3-style validation.
Note: This function is compatible only with Puppet 4.4.0 (PE 2016.1) and later.
For module users
If you are running Puppet 4, the validate_legacy
function can help you find and resolve deprecated Puppet 3 validate_*
functions. These functions are deprecated as of stdlib version 4.13 and will be removed in a future version of stdlib.
Puppet 4 allows improved defined type checking using data types. Data types avoid some of the problems with Puppet 3's validate_*
functions, which were sometimes inconsistent. For example, validate_numeric unintentionally allowed not only numbers, but also arrays of numbers or strings that looked like numbers.
If you run Puppet 4 and use modules with deprecated validate_*
functions, you might encounter deprecation messages. The validate_legacy
function makes these differences visible and makes it easier to move to the clearer Puppet 4 syntax.
The deprecation messages you get can vary, depending on the modules and data that you use. These deprecation messages appear by default only in Puppet 4:
Notice: Accepting previously invalid value for target type '<type>'
: This message is informational only. You're using values that are allowed by the new type, but would have been invalid by the old validation function.Warning: This method is deprecated, please use the stdlib validate_legacy function
: The module has not yet upgraded tovalidate_legacy
. Use the deprecation options to silence warnings for now, or submit a fix with the module's developer. See the information for module developers below for how to fix the issue.Warning: validate_legacy(<function>) expected <type> value, got <actual type>_
: Your code passes a value that was accepted by the Puppet 3-style validation, but will not be accepted by the next version of the module. Most often, you can fix this by removing quotes from numbers or booleans.Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Function Call, validate_legacy(<function>) expected <type> value, got <actual type>
: Your code passes a value that is not acceptable to either the new or the old style validation.
For module developers
The validate_legacy
function helps you move from Puppet 3 style validation to Puppet 4 validation without breaking functionality your module's users depend on.
Moving to Puppet 4 type validation allows much better defined type checking using data types. Many of Puppet 3's validate_*
functions have surprising holes in their validation. For example, validate_numeric allows not only numbers, but also arrays of numbers or strings that look like numbers, without giving you any control over the specifics.
For each parameter of your classes and defined types, choose a new Puppet 4 data type to use. In most cases, the new data type allows a different set of values than the original validate_*
function. The situation then looks like this:
validate_ pass |
validate_ fail |
|
---|---|---|
matches type | pass | pass, notice |
fails type | pass, deprecated | fail |
The code after the validation still has to handle all possible values for now, but users of your code can change their manifests to pass only values that match the new type.
For each validate_*
function in stdlib, there is a matching Stdlib::Compat::*
type that allows the appropriate set of values. See the documentation in the types/
directory in the stdlib source code for caveats.
For example, given a class that should accept only numbers, like this:
class example($value) {
validate_numeric($value)
the resulting validation code looks like this:
class example(
Variant[Stdlib::Compat::Numeric, Numeric] $value
) {
validate_legacy(Numeric, 'validate_numeric', $value)
Here, the type of $value
is defined as Variant[Stdlib::Compat::Numeric, Numeric]
, which allows any Numeric
(the new type), as well as all values previously accepted by validate_numeric
(through Stdlib::Compat::Numeric
).
The call to validate_legacy
takes care of triggering the correct log or fail message for you. It requires the new type, the previous validation function name, and all arguments to that function.
If your module still supported Puppet 3, this is a breaking change. Update your metadata.json
requirements section to indicate that your module no longer supports Puppet 3, and bump the major version of your module. With this change, all existing tests for your module should still pass. Create additional tests for the new possible values.
As a breaking change, this is also a good time to call deprecation
for any parameters you want to get rid of, or to add additional constraints on your parameters.
After releasing this version, you can release another breaking change release where you remove all compat types and all calls to validate_legacy
. At that time, you can also go through your code and remove any leftovers dealing with the previously possible values.
Always note such changes in your CHANGELOG and README.
validate_numeric
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Validates a numeric value, or an array or string of numeric values. Terminates catalog compilation if any of the checks fail.
Arguments:
- A numeric value, or an array or string of numeric values.
- Optionally, a maximum value. (All elements of) the first argument has to be less or equal to this max.
- Optionally, a minimum value. (All elements of) the first argument has to be greater or equal to this min.
This function fails if the first argument is not a numeric (Integer or Float) or an array or string of numerics, or if the second and third arguments are not convertable to a numeric. If, and only if, a minimum is given, the second argument can be an empty string or undef
, which serves as a placeholder to ensure the minimum check.
For passing and failing usage, see validate_integer
. The same values pass and fail, except that validate_numeric
also allows floating point values.
Type: statement.
validate_re
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Performs simple validation of a string against one or more regular expressions.
Arguments:
- The string to test, as the first argument. If this argument is not a string, compilation terminates. Use quotes to force stringification.
- A stringified regular expression (without the // delimiters) or an array of regular expressions, as the second argument.
- Optionally, the error message raised and shown to the user, as a third argument.
If none of the regular expressions in the second argument match the string passed in the first argument, compilation terminates with a parse error.
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 terminate:
validate_re('one', [ '^two', '^three' ])
To set the error message:
validate_re($::puppetversion, '^2.7', 'The $puppetversion fact value does not match 2.7')
To force stringification, use quotes:
validate_re("${::operatingsystemmajrelease}", '^[57]$')
Type: statement.
validate_slength
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
Validates that a string (or an array of strings) is less than or equal to a specified length
Arguments:
-
A string or an array of strings, as a first argument.
-
A numeric value for maximum length, as a second argument.
-
Optionally, a numeric value for minimum length, as a 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
Deprecated: Will be removed in a future version of stdlib. See validate_legacy
.
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 terminate:
validate_string(true)
validate_string([ 'some', 'array' ])
Note: validate_string(
undef
) will not fail in this version of the functions API.
Instead, use:
if $var == `undef` {
fail('...')
}
Type: statement.
validate_x509_rsa_key_pair
Validates a PEM-formatted X.509 certificate and private key using OpenSSL. Verifies that the certificate's signature was created from the supplied key.
Fails catalog compilation if any value fails this check.
Arguments:
- An X.509 certificate as the first argument.
- An RSA private key, as the second argument.
validate_x509_rsa_key_pair($cert, $key)
Type: statement.
values
Deprecated: This function has been replaced with a built-in values
function as of Puppet 5.5.0.
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.
Arguments:
- The array you want to analyze, as the first argument.
- Any combination of the following values, as the second argument:
- 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'].values_at(['a','b','c','d','e'], [0, "2-3"])
returns ['a','c','d'].
Since Puppet 4.0.0, you can slice an array with index and count directly in the language. A negative value is taken to be "from the end" of the array, for example:
['a', 'b', 'c', 'd'][1, 2] # results in ['b', 'c']
['a', 'b', 'c', 'd'][2, -1] # results in ['c', 'd']
['a', 'b', 'c', 'd'][1, -2] # results in ['b', 'c']
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.
For an extensive list of supported operating systems, see metadata.json
Development
Types in this module release
Change log
All notable changes to this project will be documented in this file. The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
Supported Release 5.2.0
Summary
This is a moderate release made in order to roll up various new features.
Fixed
ensure-packages()
duplicate checking now works as it should.
Added
- (MODULES-7024) - Support for 20-octet MAC addresses added.
extname()
function added - This function returns the extensionof whatever file it is passed.- (MODULES-8273) - Unquoted classes can now be used with the
defined_with_params()
function. - (MODULES-8137) - Support has been added for SLES 15.
- (MODULES-8404) -
Stdlib::Filesource
has been relaxed and now supports custom mount points. - (MODULES-8322) - IPs values of
0.0.0.0/0
and::/0
are now considered to be valid. - New type
Stdlib::IP::Address::V6::CIDR
has been created.
Supported Release 5.1.0
Summary
This is a moderate release which adds support for Puppet 6.
Fixed
- Handle nil in
delete_undef_values()
function - Readme error regarding concatenation fixed.
- Fix to the
pick()
function documentation.
Added
- Support added for Puppet 6
Supported Release 5.0.0
Summary
This is a major release which removes support for the Scientific 5 and Debian 7 OS, as well as a removal of the Stdlib::(Ipv4|IPv6|Ip_address)
data types in favour of Stdlib::IP::*
.
In addition it contains a substantial piece of work centered around updating functions that have now been migrated into Puppet itself. Please note that this will be the last major release to support Puppet 2 and Puppet 3 and that they will soon be removed.
Fixed
- Docs URLs corrected.
- Docs clarified that
Stdlib::Unixpath
only matches absolute paths. dirname()
now fails when passed an empty string.basename()
documentation clarified.- Corrected documentation of
count()
wrt matches and empty string. - Corrected example in
getparam()
and added note about equivalent in puppet. - Fixed URL to use 'latest' instead of '5.5' for
Hash.new
function.
Added
- Support added for symbolic file nodes.
loadjson()
andloadyml()
now compatible with HTTPS files.loadjson()
andloadyml()
now compatible with HTTP basic auth files.any2array
now returns and empty array when given an empty string.- Support has now been added for Ubuntu 18.04.
seeded_rand_string()
function has been added.
Changed
- PDK update
1.5.0
has been applied. size()
function deprecated for Puppet 6 and above.wrt
functions moved to Puppet as of Puppet 6.sprintf_hash
has had notification put in place to show that as of Puppet 4.10.10 it's functionality is supported by the puppet core.- Added note that
abs()
is in puppet since 6.0.0. - Added information to
base64
function about Binary data type. - Added note to
camelcase()
that function is now in puppet. - Added note to
capitalize()
that function is now in puppet. - Added note to
ceiling()
that function is now in puppet. - Added note to
chomp()
that function is now in puppet. - Added note to
chop()
that function is now in puppet. - Added note how to do equivalence of
clamp()
function in puppet 6. - Added note that
concat()
can be done with + since puppet 4.0.0. - Added note to
convert_base()
how to do this with puppet core. - Added equivalent puppet core way of doing
count()
. - Added docs for equivalent puppet language for
delete_regexp()
. - Added docs for equivalent language constructs for
delete_at()
. - Added puppet 4 equivalent for
delete_undef()
function. - Added equivalent puppet language for
delete_values()
. - Updated
delete()
function with docs about equivalent language. - Added docs that - between arrays is the same as
difference()
. - Added note to
downcase()
that function is now in puppet. - Added note to
empty()
that function is now in puppet. - Added note to
flatten()
that function is now in puppet. - Added note to
floor()
that function is now in puppet. - Added note to
get_module_path()
that puppet has similar function. - Amended documentation for
getvar()
. - Add note to
grep()
thatfilter()
in puppet does the same. - Updated
has_key()
with equivalent puppet lang expresion. - Updated the
hash()
function to show equivalent expression. - Added note about more formatting options with
String()
in puppet. - Added note to
join()
that it is in puppet since 5.4.0. - Added note to
keys()
that it is in puppet since 5.4.0. - Added note to
lstrip()
,rstrip()
,strip()
andupcase()
that they are in puppet since 6.0.0. - Updated
member()
with equivalent language expression example. - Updated
merge()
with puppt language equivalent example. - Updated
min()
andmax()
with note that they are in puppet. - Updated
num2bool()
with information that Boolean can convert. - Updated
prefix()
function with equivalent operation in pupppet. - Updated
range()
with information that Integer can be used. - Updated
reject()
with equivalent filter() call. - Added note to
reverse()
that thereverse_each()
Puppet function does the same as it. - Added note to
round()
that it has moved to puppet in 6.0.0. - Added note to
size()
thatlength()
is in puppet since 5.4.0. - Added note to
sort()
that is has moved to Puppet in 6.0.0. - Updated
str2bool()
with a note that Boolean can handle conversion. - Added note to
strftime()
that it moved to puppet in 4.8.0. - Added note to
suffix()
that the same can be done withmap()
. - Updated
time()
to mention Timespan and Timestamp data types. - Added note to
values_at()
for equivalent slice operation in language. - Added note to
values()
that it moved to puppet in 5.5.0. - Corrected docs for
keys()
- in puppet since 5.5.0. - Added note to
length()
that function moved to puppet. - Updated README.md with deprecations for functions moved to puppet.
- Updated documentation of
values_at()
. - Updated README with note from
time()
about data types for time. - Updated README for
strintf_hash()
(supported by builtin sprintf). - Updated README with deprecation of
hash()
function (use data type). - Updated README
suffix
with equiv example formap
. - Updated README with
reject
equivalent call tofilter
. - Updated README with
range
equiv use of type system +each
. - Updated README with
prefix
equiv func usingmap
. - Updated README for
num2bool
with info about Boolean type. - Updated README
str2bool
with information aboutBoolean
equivalent. - Updated README
merge
with info about+
operator equivalent. - Updated README
member
with equivalent alternative in language. - Updated README
join_keys_to_values
with link to String.new. - Updated README
has_key
shows deprecation in favor ofin
. - Updated README
grep
adds information aboutfilter
. - Updated README and
getvar.rb
as getvar has moved to puppet. - Updated README for
getparam
to be the same as in function. - Updated README
get_module_path
with info about built in variant. - Updated README
difference
to mention-
operator equiv. - Updated README
delete
with built-in alternatives. - Updated README
delete_values
with builtin equiv. - Updated README
delete_undef
&delete_regexp
with builtin equiv. - Updated README
delete_at
with equivalent built-in examples. - Updated README
coun
t to show built-in equiv. - Updated README
convert_base
with built-in equiv. - Updated README
concat
with built-in equiv using + and <<. - Updated README
base_64
with built-in equiv using Binary type. - Skipped tests for
abs
if puppet version < 6.0.0. - Skipped tests for
min
andmax
if puppet version < 6.0.0. - Skipped tests for
floor
if puppet version < 6.0.0. - Skipped tests for
ceiling
if puppet version < 6.0.0. - Skipped tests for
round
if puppet version < 6.0.0. - Skipped tests for
upcase
if puppet version < 6.0.0. - Skipped tests for
downcase
if puppet version < 6.0.0. - Skipped tests for
capitalize
if puppet version < 6.0.0. - Skipped tests for
camelcase
if puppet version < 6.0.0. - Skipped tests for strip functions if puppet version < 6.0.0.
- Skipped tests for
chop
andchomp
if puppet version < 6.0.0. - Skipped tests for
sort
if puppet version < 6.0.0. - Removed extra space in
describe
forabs
test. - Updated README and
any2array
with built-in equiv Array.new. - Updated README and
any2bool
with built-in equiv Boolean.new. - Updated README and
bool2num
with built-in equiv Numeric.new. - Updated README and
bool2str
with built-in equiv String.new. - Corrected equivalent example for
count
. - Updated README and made mention of
filter
indelete
a link. - Updated docs and tests for
strftime
. - Updated all acceptance test using Puppet.version.
- Change 'puppet' to 'Puppet' in function doc strings.
- HTTP type checks are now case insensitive.
Removed
- Support has been removed for
Scientific 5
andDebian 7
operating systems. Stdlib::(Ipv4|IPv6|Ip_address)
have been removed.
Supported Release 4.25.1
Summary
This is a patch which includes a roll up of small fixes. In Puppet 5.5.0 flatten()
, length(),
empty(),
join(),
keys(),
and values()
are now built into Puppet. Please note that the Puppet implementation of the functions will take precedence over the functions in 'puppetlabs-stdlib'.
Fixed
- Remove unneeded execute permission from test files.
- Puppet 5.5.0 function deprecation MODULES-6894.
Supported Release 4.25.0
Summary
This is quite a feature heavy release, it makes this module PDK-compliant for easier maintenance and includes a roll up of maintenance changes.
Added
- PDK conversion MODULES-6332.
- Update
join_keys_to_values
with an undef statement. - Type alias
Stdlib::Fqdn
matches paths on a fully qualified domain name. - Type alias
Stdlib::Host
matches a valid host, this can be a valid 'ipv4', 'ipv6' or 'fqdn'. - Type alias
Stdlib::Port
matches a valid TCP/UDP Port number. - Type alias
Stdlib::Filesource
matches paths valid values for the source parameter of the puppet file type. - Type alias
Stdlib::IP::Address
matches any IP address, including both IPv4 and IPv6 addresses, - Type alias
Stdlib::IP::Address::V4
matches any string consisting of a valid IPv4 address, this is extended by 'CIDR' and 'nosubnet'. - Type alias
Stdlib::IP::Address::V6
matches any string consisting of a valid IPv6 address, this is extended by 'Full', 'Alternate' and 'Compressed'. - Type alias
Stdlib::IP::Address::V6::Nosubnet
matches any string consisting of a valid IPv6 address with no subnet, this is extended by 'Full', 'Alternate' and 'Compressed'. - Type alias
Stdlib::Port
matches a valid TCP/UDP Port number this is then extended to 'Privileged' which are ports less than 1024 and 'Unprivileged' which are ports greater than 1024.
Supported Release 4.24.0
Summary
This release includes a roll up of minor changes and a new feature which provides the ability to skip undef values to_json_pretty()
.
We have also reverted a change that was previously made and resulted in breaking compatibility with Ruby 1.8.7.
Added
- Ability to skip undef values in
to_json_pretty()
. - Fix type3x function in stdlib (MODULES-6216)
Changed
- Indentation for
sync.yml
was fixed. - Updated type alias tests and dropped superfluous wrapper classes
- Revert to old ruby 1.X style of hash (MODULES-6139)
rubocop.yml
not managed by msync (MODULES-6201)
Supported Release 4.23.0
Summary
This release is in order to implement Rubocop changes throughout the module.
Added
- Standard and translated readme's have been updated.
- Rubocop has been implemented in the module and a wide variety of changes have been made to the code.
- Modulesync changes have been merged into the code.
Fixed
- Minor fix to the readme.
Supported Release 4.22.0
Summary
This is a clean release in preparation of putting the module through the rubocop process.
Added
- Support has been added for Debian 9
- 'Stdlib::Mode type' has been added to the module.
- A type for 'ensure' has been added to the service resources.
- A new function 'sprintf_hash' has been added to allow the use of named references.
Removed
- Support has been removed for: RedHat 4, CentOS 4, OracleLinux 4, Scientific 4, SLES 10 SP4, Windows Server 2003, Windows Server 2003 R2 and Windows 8.
Fixed
- The 'ruby_spec.rb' test file has been altered s that it properly checks results.
- Example syntax in 'file_line.rb' has been fixed.
Supported Release 4.21.0
Summary
This is a small feature release that includes a revamped, albeit backwards-compatible file_line type.
Added
replace_all_matches_not_matching_line
parameter in file_line- additional tests and documentation for file_line
Removed
- duplicate spec test for absolute_path
Fixed
- Unixpath type to allow "/" as valid path
- file_line behavior that caused infinite appending of
line
to a file (MODULES-5651)
Supported Release 4.20.0
Summary
This release adds new functions and updated README translations.
Added
to_json
,to_json_pretty
, andto_yaml
functions- new Japanese README translations
Fixed
- compatibility issue with older versions of Puppet and the
pw_hash
function (MODULES-5546)
Removed
- support for EOL platform Debian 6 (Squeeze)
Supported Release 4.19.0
Summary
This release adds new functions and better documentation/fixes for existing functions with a noteworthy fix for file_line.
Added
- Add validate_domain_name function
- Add the round function
- Add type for MAC address
- Add support for sensitive data type to pw_hash (MODULES-4908)
- Add new function, fact() (FACT-932)
Fixed
- Fixes for the file_line provider (MODULES-5003)
- Add documentation for email functions (MODULES-5382)
- unique function is deprecated for puppet version > 5. (FM-6239)
- Fix headers in CHANGELOG.md so that headers render correctly
- ensure_packages, converge ensure values 'present' and 'installed'
Changed
- Removes listed support for EOL Ubuntu versions
Supported Release 4.18.0
Summary
Small release that reverts the Puppet version requirement lower bound to again include Puppet 2.7+ and bumps the upper bound to now include Puppet 5.
Fixed
- Reverts lower bound of Puppet requirement to 2.7.20
Supported Release 4.17.1
Summary
Small release to address a bug (PUP-7650). Also pushes the Puppet version compatibility to 4.7.0.
Bugfixes
- (MODULES-5095) Workaround for PUP-7650
- (FM-6197) Formatting fixes for file_line resource
Supported Release 4.17.0
Summary
This release adds support for internationalization. It also contains Japanese translations for the README, summary and description of the metadata.json and major cleanups in the README. Additional folders have been introduced called locales and readmes where translation files can be found. A number of features and bug fixes are also included in this release. It also adds a new function glob()
for expanding file lists. Also works around an issue that appeared in puppet 4.6.0 involving types being declared multiple times.
Features
- Addition of POT file / folder structure for i18n.
- Addition of Internationalized READMEs.
glob()
function
Fixed
- Occasional duplicate type definitions when using
defined_with_params()
file_line
encoding issue on ruby 1.8 (unsupported)- Huge readme refresh
Supported Release 4.16.0
Summary
This release sees a massive update to all unit tests to test UTF8 characters. There are also multiple cleanups in preparation for internationalization. Alongside this, improvements to ipv6 support, a new length function compatible with Puppet 4, and an update to path types. Also contains multiple bug fixes around functionality and tests.
Features
- Addition of coverage in all unit tests for functions, data and resource types for UTF8 for i18n.
- All strings within the readme and functions that are split over two lines have been combined in preparation for i18n parser/decorator.
- Improvement on the ipv6 support for type - Improves regex to catch some valid (but lesser known) ipv6 strings, mostly those which are a mix of ipv6 strings and embedded ipv6 numbers.
- Adds a new parameter
encoding
to allow non UTF-8 files to specify a file encoding. This prevents receiving the error message "invalid byte sequence in UTF-8" when special characters that are not UTF-8 encoded appear in the input stream, such as the copyright symbol. - Addition of the new length function. Returns the length of a given string, array or hash. To eventually replace the deprecated size() function as can handle the new type functionality introduced in Puppet 4.
- Permit double slash in absolute/Unix path types.
Bugfixes
- Fix unsupported data type error with rspec-puppet master.
- Now allows test module metadata.json to be read by Puppet.
- Fix acceptance test failure "Hiera is not a class".
- Removal of unsupported platforms and future parser setting in acceptance tests.
- Regex for tuple checking has been loosened.
- Ensure_packages function - Now only tries to apply the resource if not defined.
- (MODULES-4528) Use versioncmp to check Puppet version for 4.10.x compat.
- Adds comments to warn for UTF8 incompatibility of the functions that may not be compatible with UTF8 with Ruby < 2.4.0.
Supported Release 4.15.0
Summary
This release introduces multiple new functions, a new fact and the addition of Ubuntu Xenial support. Also includes a bugfix and documentation update.
Features
- Addition of puppet_server fact to return agents server.
- Addition of a pry function.
- Addition of tests for ensure_resources.
- Addition of FQDN UUID generation function.
- Addition of Ubuntu Xenial to OS Support.
Bugfixes
- Ensure_packages now works with Ruby < 2.0.
- Updated the documentation of str2bool function.
Supported Release 4.14.0
Summary
Adds several new features and updates, especially around refining the deprecation and validate_legacy functions. Also includes a Gemfile update around an issue with parallel_tests dependancy for different versions of Ruby.
Features
- Deprecation function now uses puppet stacktrace if available.
- join_key_to_values function now handles array values. If values are arrays, multiple keys are added for each element.
- Updated Gemfile to deal with parallel_tests Ruby dependancy (MODULES-3983).
- Updated/Fixed ipv4 regex validator (MODULES-3980).
- Deprecation clarification added to README.
Bugfixes
- README typo fixes.
- Use .dup to duplicate classes for modification (MODULES-3829).
- Fixes spec failures that were caused by a change in the tested error message in validate_legacy_spec.
- Broken link to validate_legacy docs fixed.
- Updates deprecation tests to include future parser.
Supported Release 4.13.1
Summary
This bugfix release addresses the undefined method 'optional_repeated_param'
error messages seen by users of puppet 3.7.
It also improves the user experience around function deprecations by emitting one warning per function(-name) instead of only one deprecation overall. This allows users to identify all deprecated functions used in one agent run, with less back-and-forth.
Bugfixes
- Emit deprecations warnings for each function, instead of once per process. (MODULES-3961)
- Use a universally available API for the v4 deprecation stubs of
is_*
andvalidate_*
. (MODULES-3962) - Make
getvar()
compatible to ruby 1.8.7. (MODULES-3969) - Add v4 deprecation stubs for the
is_
counterparts of the deprecated functions to emit the deprecations warnings in all cases.
Supported Release 4.13.0
Summary
This version of stdlib deprecates a whole host of functions, and provides stepping stones to move to Puppet 4 type validations. Be sure to check out the new deprecation()
and validate_legacy()
functions to migrate off the deprecated v3-style data validations.
Many thanks to all community contributors: bob, Dmitry Ilyin, Dominic Cleal, Joris, Joseph Yaworski, Loic Antoine-Gombeaud, Maksym Melnychok, Michiel Brandenburg, Nate Potter, Romain Tartière, Stephen Benjamin, and Steve Moore, as well as anyone contributing in the code review process and by submitting issues.
Special thanks to Voxpupuli's Igor Galić for donating the puppet-tea types to kickstart this part of stdlib.
Deprecations
validate_absolute_path
,validate_array
,validate_bool
,validate_hash
,validate_integer
,validate_ip_address
,validate_ipv4_address
,validate_ipv6_address
,validate_numeric
,validate_re
,validate_slength
,validate_string
, and theiris_
counter parts are now deprecated on Puppet 4. See thevalidate_legacy()
description in the README for help on migrating away from those functions.- The
dig
function is provided by core puppet since 4.5.0 with slightly different calling convention. The stdlib version can still be accessed asdig44
for now.
Features
-
Add Puppet 4 data types for Unix, and Windows paths, and URLs.
-
Add
deprecation
function to warn users of functionality that will be removed soon. -
Add
validate_legacy
function to help with migrating to Puppet 4 data types. -
Add
any2bool
function, a combination of ofstring2bool
andnum2bool
. -
Add
delete_regex
function to delete array elements matching a regular expression. -
Add
puppet_environmentpath
fact to expose theenvironmentpath
setting. -
Add
regexpescape
function to safely insert arbitrary strings into regular expressions. -
Add
shell_escape
,shell_join
, andshell_split
functions for safer working with shell scripts.. -
The
delete
function now also accepts regular expressions as search term. -
The
loadyaml
function now accepts a default value, which is returned when there is an error loading the file.
Bugfixes
- Fix
file_line.match_for_absence
implementation and description to actually work. (MODULES-3590) - Fix
getparam
so that it can now also returnfalse
. (MODULES-3933) - Fix the fixture setup for testing and adjust
load_module_metadata
andloadjson
tests. - Fix
defined_with_params
to handleundef
correctly on all puppet versions. (PUP-6422, MODULES-3543) - Fix
file_line.path
validation to use puppet's built inabsolute_path?
matcher.
Minor Improvements
- README changes: improved descriptions of
deep_merge
,delete
,ensure_packages
,file_line.after
,range
, andvalidate_numeric
. - The
getvar
function now returns nil in all situations where the variable is not found. - Update the
dig44
function with betterundef
,nil
, andfalse
handling. - Better wording on
str2bool
argument validation error message.
Known issues
- The
validate_legacy
function relies on internal APIs from Puppet 4.4.0 (PE 2016.1) onwards, and doesn't work on earlier versions. - Puppet 4.5.0 (PE 2016.2) has a number of improvements around data types - especially error handling - that make working with them much nicer.
Supported Release 4.12.0
Summary
This release provides several new functions, bugfixes, modulesync changes, and some documentation updates.
Features
- Adds
clamp
. This function keeps values within a specified range. - Adds
validate_x509_rsa_key_pair
. This function validates an x509 RSA certificate and key pair. - Adds
dig
. This function performs a deep lookup in nested hashes or arrays. - Extends the
base64
support to fitrfc2045
andrfc4648
. - Adds
is_ipv6_address
andis_ipv4_address
. These functions validate the specified ipv4 or ipv6 addresses. - Adds
enclose_ipv6
. This function encloses IPv6 addresses in square brackets. - Adds
ensure_resources
. This function takes a list of resources and creates them if they do not exist. - Extends
suffix
to support applying a suffix to keys in a hash. - Apply modulesync changes.
- Add validate_email_address function.
Bugfixes
- Fixes
fqdn_rand_string
tests, since Puppet 4.4.0 and later have a higherfqdn_rand
ceiling. - (MODULES-3152) Adds a check to
package_provider
to prevent failures if Gem is not installed. - Fixes to README.md.
- Fixes catch StandardError rather than the gratuitous Exception
- Fixes file_line attribute validation.
- Fixes concat with Hash arguments.
Supported Release 4.11.0
Summary
Provides a validate_absolute_paths and Debian 8 support. There is a fix to the is_package_provider fact and a test improvement.
Features
- Adds new parser called is_absolute_path
- Supports Debian 8
Bugfixes
- Allow package_provider fact to resolve on PE 3.x
Improvements
- ensures that the test passes independently of changes to rubygems for ensure_resource
2015-12-15 - Supported Release 4.10.0
Summary
Includes the addition of several new functions and considerable improvements to the existing functions, tests and documentation. Includes some bug fixes which includes compatibility, test and fact issues.
Features
- Adds service_provider fact
- Adds is_a() function
- Adds package_provider fact
- Adds validate_ip_address function
- Adds seeded_rand function
Bugfixes
- Fix backwards compatibility from an improvement to the parseyaml function
- Renaming of load_module_metadata test to include _spec.rb
- Fix root_home fact on AIX 5.x, now '-c' rather than '-C'
- Fixed Gemfile to work with ruby 1.8.7
Improvements
- (MODULES-2462) Improvement of parseyaml function
- Improvement of str2bool function
- Improvement to readme
- Improvement of intersection function
- Improvement of validate_re function
- Improved speed on Facter resolution of service_provider
- empty function now handles numeric values
- Package_provider now prevents deprecation warning about the allow_virtual parameter
- load_module_metadata now succeeds on empty file
- Check added to ensure puppetversion value is not nil
- Improvement to bool2str to return a string of choice using boolean
- Improvement to naming convention in validate_ipv4_address function
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
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] 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.