nova-spicehtml5proxy dependency package added

centos based container already have  python-websockify installed.
but it gives warning to install numpy package.
ubuntu based container  need to install websockify package that will
install both module websockify and its dependency numpy module. so no
need to install numpy package externally in ubnutu but in centos
it need to install.

Closes-bug: #1638801

Change-Id: Ic858543733ec86f55ab506edcd3631a6df1a086d
(cherry picked from commit 246acc40f3)
This commit is contained in:
prameswar 2016-11-02 22:56:54 +05:30
parent 9bf806ed49
commit d2ba21bc51
1 changed files with 4 additions and 2 deletions

View File

@ -10,13 +10,15 @@ MAINTAINER {{ maintainer }}
{% set nova_spicehtml5proxy_packages = [
'openstack-nova-spicehtml5proxy',
'spice-html5'
'spice-html5',
'numpy'
] %}
{% elif base_distro in ['ubuntu'] %}
{% set nova_spicehtml5proxy_packages = [
'nova-spiceproxy'
'nova-spiceproxy',
'websockify'
] %}
{% endif %}