No commit activity in last 3 years
No release in over 3 years
A puppet-lint plugin to check the ensure attribute on package resources.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

puppet-lint-package_ensure-check

Build Status Gem Version Gem Downloads

A puppet-lint plugin to check the ensure attribute on package resources.

Installing

From the command line

$ gem install puppet-lint-package_ensure-check

In a Gemfile

gem 'puppet-lint-package_ensure-check'

Checks

Ensure latest on package resource

The latest value for the ensure attribute is dangerous and should not be used. You should use installed or a version specifier instead.

What you have done

package { 'puppet':
  ensure => latest,
}

What you should have done

package { 'puppet':
  ensure => '3.8.3-1',
}

Disabling the check

To disable this check, you can add --no-package_ensure-check to your puppet-lint command line.

$ puppet-lint --no-package_ensure-check path/to/file.pp

Alternatively, if you’re calling puppet-lint via the Rake task, you should insert the following line to your Rakefile.

PuppetLint.configuration.send('disable_package_ensure')

Fix support

This plugin has the ability to fix the ensure value by setting it to installed instead of latest.

Only use this if you know what you're doing!