Install python-netifaces to avoid building

Since subunit2sql requires oslo.db which requires oslo.utils which
requires netifaces which builds C extensions and does not provide
prebuilt wheels for any platform other than Windows, install
Ubuntu's python-netifaces package to avoid needing an entire build
toolchain. We're moving the servers to Xenial, which provides a
version compatible with the current oslo.utils requirements list.

Change-Id: I4c701f08cf11bc068f6ebb10534f7e6f865970bb
This commit is contained in:
Jeremy Stanley 2017-10-27 18:13:02 +00:00
parent fc0a11ebc4
commit 7e35c0b223
1 changed files with 4 additions and 0 deletions

View File

@ -27,6 +27,10 @@ class subunit2sql (
ensure => present,
}
package {'python-netifaces':
ensure => present,
}
package { 'python-subunit':
ensure => latest,
provider => openstack_pip,