From 05f5bf2c1a102a793e4bb3905481264b969602da Mon Sep 17 00:00:00 2001 From: Dan Skadra Date: Fri, 20 May 2016 18:06:27 -0400 Subject: [PATCH] Explicitly ensure python-dev is installed The stankevich/python module currently uninstalls python-dev by default. At least on CentOS, python-dev is required for virtualenv and causes a dependency failure in the puppet run --- manifests/init.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/init.pp b/manifests/init.pp index 7eb5a9b3..fe420527 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -280,6 +280,7 @@ if $manage_virtualenv and !defined(Package[$::puppetboard::params::virtualenv]) { class { '::python': virtualenv => 'present', + dev => 'present', } }