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 <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-06-01 21:22:17 -04:00
parent 1c2aca510f
commit cd746e236b
No known key found for this signature in database
GPG Key ID: 611A80832067AF38

View File

@ -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'],