No release in over 3 years
Extends puppet-lint to ensure all filenames used in template and epp functions end with the string '.erb' or '.epp' respectively
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 1.1, < 3.0
 Project Readme

puppet-lint template file extension check

Extends puppet-lint to ensure all file names used in template and epp functions end with the string '.erb' or '.epp' respectively

Actions Status

Actions Status

This plugin is an extension of our local style guide and may not suit your own code base. This sample would trigger the puppet-lint warning:

class valid_template_filename {
  file { '/tmp/templated':
    content => template('mymodule/single_file.config'),
  }
}

# all template file names should end with .erb

And this would trigger an EPP (Embedded Puppet) specific warning:

class epp_multi_templated_file {
  file { '/tmp/templated':
    content => epp('mymodule/first_file.epp', 'mymodule/second_file.conf'),
  }
}

# all epp file names should end with .epp

Installation

To use this plugin add the following line to your Gemfile

gem 'puppet-lint-template_file_extension-check'

and then run bundle install.

Usage

This plugin provides a new check to puppet-lint.

all template file names should end with .erb

all epp file names should end with .epp

Other puppet-lint plugins

You can find a list of my puppet-lint plugins in the unixdaemon puppet-lint-plugins repo.

Author

Dean Wilson

License

  • MIT