Install python3-websockify for Ubuntu

The nova-novncproxy package in Ubuntu bionic-updates
Stein repo does not properly depends on python3-websockify
which causes nova-novncproxy service to fail to start.

This installs this package in testing after the repos has
been added until this is fixed in the package by Canonical.

Change-Id: Ic690b7091f1f24ec7a0f3716748edabc7e1d0bf1
This commit is contained in:
Tobias Urdin 2019-02-07 14:52:11 +01:00
parent 4d9ed356e7
commit 5bb1bd8d0b
1 changed files with 8 additions and 0 deletions

View File

@ -129,4 +129,12 @@ class openstack_integration::repos {
}
}
if $::operatingsystem == 'Ubuntu' {
# NOTE(tobias-urdin): Remove this when Ubuntu 18.04 bionic-updates nova-novncproxy
# package properly depends on python3-websockify.
package { 'python3-websockify':
ensure => 'present',
}
Apt::Source<||> -> Package['python3-websockify']
}
}