Add packages needed to build lxml

This commit adds the ubuntu packages needed to build lxml which is now
being pulled it because of the addition of rss support to
openstack-health's api server.

Change-Id: Id59c044413f47b59a471fe9a915caf4cca64d253
This commit is contained in:
Matthew Treinish 2016-04-20 17:33:02 -04:00
parent ec2dcb73de
commit cf8a051b18
No known key found for this signature in database
GPG Key ID: FD12A0F214C9E177
1 changed files with 8 additions and 0 deletions

View File

@ -55,6 +55,14 @@ class openstack_health::api(
ensure => present,
}
package {'libxml2-dev':
ensure => present,
}
package {'libxslt1-dev':
ensure => present,
}
exec { 'requirements':
command => "${virtualenv_dir}/bin/pip install -U -r ${source_dir}/requirements.txt",
require => Python::Virtualenv[$virtualenv_dir],