puppet-pip/manifests/python3.pp
Paul Belanger a0d714c7cf Add Gemfile and puppet 4 checks
In anticipation of puppet 4, start trying to deal with puppet 4 things
that can be helpfully predicted by puppet lint plugins.

Change-Id: I498052d2db57e571f0f91cd2c2e43e39c693331f
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2015-08-06 14:11:06 -04:00

16 lines
282 B
Puppet

# Class: pip
#
class pip::python3 {
include ::pip::params
package { $::pip::params::python3_devel_package:
ensure => present,
}
package { $::pip::params::python3_pip_package:
ensure => present,
require => Package[$::pip::params::python3_devel_package]
}
}