Ensure python-openssl is not present

python-openssl should be installed from pip along with the rest of the
requirements. Not doing so leads to issues with versions of pyOpenSSL
that are too old.

Change-Id: I22a7d6e4080efbfcd1f86083505d015cf33ea885
This commit is contained in:
Monty Taylor 2016-11-29 16:29:43 -06:00
parent ad163ceb22
commit 89789b79c0
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
1 changed files with 6 additions and 0 deletions

View File

@ -74,6 +74,12 @@ class nodepool (
ensure_packages($packages, {'ensure' => 'present'})
$absent_packages = [
'python-openssl',
]
ensure_packages($absent_packages, {'ensure' => 'absent'})
if ! defined(Package['build-essential']) {
package { 'build-essential':
ensure => present,