Install python-keystonemiddleware for Ubuntu

The swift packages does not properly depend on the
python-keystonemiddleware package (py2).

This instead installs this package until the package
dependency is corrected. Swift is still py2 only.

Change-Id: Id2de5a2a99b6f9baa9327a51160c080dd984df85
This commit is contained in:
Tobias Urdin 2019-02-07 17:03:34 +01:00
parent 5bb1bd8d0b
commit a48910362d
1 changed files with 7 additions and 0 deletions

View File

@ -136,5 +136,12 @@ class openstack_integration::repos {
ensure => 'present',
}
Apt::Source<||> -> Package['python3-websockify']
# NOTE(tobias-urdin): Remove this when Ubuntu 18.04 bionic-updates swift
# packages properly depends on python-keystonemiddleware (swift is still py2).
package { 'python-keystonemiddleware':
ensure => 'present',
}
Apt::Source<||> -> Package['python-keystonemiddleware']
}
}