Install missing package in spiceproxy container

nova-spicehtml5proxy service fails on RPM-based systems unless the
spice-html5 RPM is also installed.

Change-Id: I0807159cd68bcc9df4da2d94d7b54a2871236f59
Closes-Bug: #1569709
(cherry picked from commit d47f6bc90c)
This commit is contained in:
Swapnil Kulkarni (coolsvap) 2016-06-01 09:21:00 +05:30
parent c0e5ed94cb
commit 8af353a175
1 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,9 @@ MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install openstack-nova-spicehtml5proxy \
RUN yum -y install \
openstack-nova-spicehtml5proxy \
spice-html5 \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}