I'm not 100% sure I'm doing this right, but I am getting no errors, just python-pip is not getting installed and I am not sure why.
In Puppetfile
mod 'epel',
:git => 'https://github.com/stahnma/puppet-module-epel.git',
:ref => '1.0.0'
mod 'python',
:git => 'https://github.com/stankevich/puppet-python.git',
:ref => '1.7.9'
In my module's pp file...
include epel
class { 'python' :
version => 'system',
pip => true,
dev => false,
virtualenv => false,
gunicorn => false,
require => Class['epel'],
}
It's probably something dumb I'm doing.
I'm not 100% sure I'm doing this right, but I am getting no errors, just python-pip is not getting installed and I am not sure why.
In Puppetfile
In my module's pp file...
It's probably something dumb I'm doing.