Pin puppet lint to 0.3.2.

Puppet lint released a 1.0 version that we are not prepared for as
existing checks are not more strict. Pin to the old version that we work
against allowing us to continuing to use puppet lint in a way that works
for us. We can consider upgrading at some point in the future.

Change-Id: I310c9d4e09f706f24e67f39ec6fbb1fb006148dc
This commit is contained in:
Clark Boylan 2014-08-19 11:24:34 -07:00
parent 7f293f04f5
commit 8b9eb289c0
1 changed files with 6 additions and 1 deletions

View File

@ -96,9 +96,14 @@ class openstack_project::thick_slave(
require => Package[$::openstack_project::jenkins_params::rubygems_package],
}
package { 'puppet-lint':
ensure => '0.3.2',
provider => gem,
require => Package[$::openstack_project::jenkins_params::rubygems_package],
}
$gem_packages = [
'bundler',
'puppet-lint',
'puppetlabs_spec_helper',
]