Forge Home

multi_epp

Puppet function for selecting from multiple epp template sources

6,834 downloads

6,834 latest version

4.6 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.1.0 (latest)
released May 25th 2017
This version is compatible with:
  • RedHat, Ubuntu, Debian, Fedora, CentOS

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'deanwilson-multi_epp', '0.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add deanwilson-multi_epp
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install deanwilson-multi_epp --version 0.1.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

deanwilson/multi_epp — version 0.1.0 May 25th 2017

Puppet multi_epp source function

The multi_epp puppet function allows you to list multiple EPP template files and use the first one that exists.

Build Status Puppet Forge

The most common usage is to declare multiple files, most specific to least specific, and the values that should be passed to the template for use inside it.

class ssh::config {

  file { '/etc/ssh/sshd_config':
    ensure  => present,
    mode    => '0600',
    content => multi_epp( [
                            "ssh/${::fqdn}.epp",
                            "ssh/${::domain}.epp",
                            'ssh/default_sshdconfig.epp',
                          ], {
                                'port'          => 22222,
                                'ListenAddress' => '0.0.0.0',
                          }),
  }

}

It's worth noting that the template file names must be called as an array of multiple files. While this is a little unwieldy it's required due to the way Puppet handles repeated parameters and anything following them in an invocation.

Supported versions

This function was written using the Puppet 4 function API and so will not run on Puppet 3 unless the future parser is enabled.

Installation

You can install this module from PuppetForge:

puppet module install deanwilson-multi_epp

License

Apache 2.0 - Dean Wilson

See also

The function this was based on, multitemplate, provides the same functionality for ERB templates.