- Overview
- Setup - The basics of getting started with extlib
- Usage - Configuration options and additional functionality
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
This module provides functions and facts that are out of scope for stdlib. Some of them are even intrinsically tied to stdlib.
% puppet module install puppet-extlib
Since puppet/extlib
version 3, all functions are provided under the extlib
namespace.
Non namespaced versions were removed in version 5.
All functions are documented in REFERENCE.md
All facts in this module are namespaced and begin extlib__
.
Facter 4 users can also find all facts under a single extlib
toplevel
structured fact.
A fact to expose puppet.conf settings. These are resolved on the agent, (unlike
$settings::<setting_name>
which is resolved on the puppet master).
The following sections/settings are included.
{
main => {
hostpubkey,
hostprivkey,
hostcert,
localcacert,
ssldir,
vardir,
server,
},
master => {
localcacert,
ssldir,
}
}
Some functions require puppetlabs-stdlib (>= 4.6.0) and all functions are only compatible with Puppet 4.7 and later.
We highly welcome new contributions to this module, especially those that include documentation, and rspec tests ;) but will happily guide you through the process, so, yes, please submit that pull request!
Reference documentation is generated using puppet-strings. To regenerate it, please run the rake task as follows.
bundle exec rake reference