No commit activity in last 3 years
No release in over 3 years
This puppet-lint extension validates that: - node definitions only `include` a single role - roles only `include` profiles and have no class parameters - roles only `inherit` other roles
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

< 3.0, >= 1.1
 Project Readme

puppet-lint-roles-profiles

This plugin validates that the code base adheres to the roles and profiles workflow[1].

Installation

To use this plugin, add the following line to the Gemfile in your Puppet code base and run bundle install.

gem 'puppet-lint-roles-profiles'

Usage

roles_include_profiles

--fix-support: No

Will raise a warning if a roles does anything other than include profiles. Resource like class definitions will also raise an error.

WARNING: roles must only include profiles

What you did:

class role::foo {
  class { 'ssh': }

or:

class role::foo {
  class { 'profile::ssh': }
}

What you should have done:

class role::foo {
  include profile::ssh
}

roles_with_params

--fix-support: No

Will raise a warning when a role has class parameters

Warning: roles must not have any parameters

roles_inherits_roles

--fix-support: No

Will raise a warning when a role inherits something other than a role

nodes_include_one_role

--fix-support: No

Will raise a warning when a node definition contains more than one role include (except comments).

References

[1] https://puppet.com/docs/pe/2017.2/r_n_p_full_example.html