diff --git a/manifests/repos.pp b/manifests/repos.pp index 468836ac5..f41d25d2b 100644 --- a/manifests/repos.pp +++ b/manifests/repos.pp @@ -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'] + } }