From cd746e236bff6350d595257bd4ffcf342b5017df Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Thu, 1 Jun 2017 21:22:17 -0400 Subject: [PATCH] Add ansible dependencies for zuulv3 We need to ssl and ffi development libraries to properly compile ansible. Now a dependency of zuulv3. Change-Id: If7f64b9e74aaf5f0611343b9d323ae92c42be865 Signed-off-by: Paul Belanger --- manifests/init.pp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/manifests/init.pp b/manifests/init.pp index 7f2aae5..04faa35 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -79,6 +79,8 @@ class zuul ( } $packages = [ + 'libffi-dev', + 'libssl-dev', 'python-paste', 'python-webob', ] @@ -162,6 +164,8 @@ class zuul ( require => [ Class['pip'], Package['build-essential'], + Package['libffi-dev'], + Package['libssl-dev'], Package['python-daemon'], Package['python-lxml'], Package['python-paramiko'],