a0d714c7cf
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>
16 lines
282 B
Puppet
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]
|
|
}
|
|
|
|
}
|