Version information
This version is compatible with:
- Puppet Enterprise 3.2.x
- Puppet 3.x
- RedHat, CentOS, Debian, Ubuntu, Windows
Start using this module
Add this module to your Puppetfile:
mod 'opentable-altlib', '0.2.0'
Learn more about managing modules with a PuppetfileDocumentation
Puppet Alternative Library
This module provides an additional set of resources that are not found in the Puppet Standard Library. This module will include the following additions to Puppet:
- Functions
- Facts
This module is provided by OpenTable. The modules that OpenTable write and distributes may make extensive use of this library.
Functions
sub_item
Takes a hash as a first argument and a key as the second argument. Will iterate through the hash until it finds the key and then return the corisponding value.
Example:
$hash = {
'a' => {
'aa' => '1',
'aaa' => '2'
},
'b' => ['3','4'],
'c' => '5'
}
sub_hash($hash,'a')
Would return: {'aa' => '1', 'aaa' => '2'}
- Type: rvalue
replace_hash
Example:
$original_hash = {
'test' => {
'ensure' => 'present',
'groups' => ['sudo']
}
}
$modifier = { 'groups' => ['wheel'] }
replace_hash($orginal_hash, $modifier)
Would return: { 'test' => { 'ensure' => 'present', 'groups' => ['wheel'] } }
- Type: rvalue
Facts
agent_ssldir
Returns the directory where SSL certificates are kept
agent_config
Returns the configuration file for the current puppet application.
agent_rundir
Returns the directory where Puppet PID files are kept
2014-03-21 Release 0.2.0
- added facts to pull out puppet agent configuration
2014-03-20 Release 0.1.0
- initial release
Copyright (c) 2013 OpenTable, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.