Re: [Puppet Users] pip package provider on Redhat

2018-10-22 Thread Sergei Gerasenko
Thank you for your response, John. I know my options now. On Friday, October 19, 2018 at 8:29:29 AM UTC-5, jcbollinger wrote: > > > > On Friday, October 19, 2018 at 7:00:51 AM UTC-5, David Schmitt wrote: >> >> To answer your original question: no, there is no way to override the >> ruby code

Re: [Puppet Users] pip package provider on Redhat

2018-10-22 Thread Sergei Gerasenko
Cool, thank you for the info. I know my options a bit better now. On Friday, October 19, 2018 at 7:00:51 AM UTC-5, David Schmitt wrote: > > To answer your original question: no, there is no way to override the ruby > code without modifying the ruby code. > > On Thu, Oct 18, 2018 at 7:41 PM

Re: [Puppet Users] pip package provider on Redhat

2018-10-19 Thread jcbollinger
On Friday, October 19, 2018 at 7:00:51 AM UTC-5, David Schmitt wrote: > > To answer your original question: no, there is no way to override the ruby > code without modifying the ruby code. > I guess it depends on what one means by "override". The existing provider cannot be made to work

Re: [Puppet Users] pip package provider on Redhat

2018-10-19 Thread David Schmitt
To answer your original question: no, there is no way to override the ruby code without modifying the ruby code. On Thu, Oct 18, 2018 at 7:41 PM Sergei Gerasenko wrote: > > Yeah, I know we're old. I'm asking in general though (imagining it would > be happening with the current version for

Re: [Puppet Users] pip package provider on Redhat

2018-10-18 Thread Sergei Gerasenko
Yeah, I know we're old. I'm asking in general though (imagining it would be happening with the current version for example?), what would be an elegant way to fix this? On Wednesday, October 17, 2018 at 5:22:05 AM UTC-5, Ben Ford wrote: > > Hi Sergei! > > Puppet 3.x is quite old, and in fact

Re: [Puppet Users] pip package provider on Redhat

2018-10-17 Thread Ben Ford
Hi Sergei! Puppet 3.x is quite old, and in fact has been end-of-lifed for 655 days as of today! (December 31, 2016). It is no longer receiving security or bug fixes. If you upgrade to a modern version, you'll see that there's are new pip and pip3 providers that use the appropriate commands.

[Puppet Users] pip package provider on Redhat

2018-10-17 Thread Sergei Gerasenko
Hello, I'm running puppet 3.5.1 and the pip package provider has this bit: def self.cmd case Facter.value(:osfamily) when "RedHat" "pip-python" else "pip" end end As you can see, when the OS is RedHat, it wants to use the pip-python command, but it's not