Make novncproxy work on from source installs

The symlink was wrong.

Change-Id: I9bb7978c7b5460484528af2a740a95e1d6411901
Closes-Bug: #1495158
This commit is contained in:
Steven Dake 2015-09-12 18:07:46 -07:00
parent 7740c2aa25
commit 8080ba0e40

View File

@ -12,8 +12,8 @@ RUN yum -y install \
{% endif %}
{% elif install_type == 'source' %}
ADD nova-novncproxy-archive /nova-novncproxy-source
RUN ln -s nova-novncproxy-source/* /usr/share/novnc
ADD nova-novncproxy-archive /usr/share/nova-novncproxy-source
RUN cd /usr/share && ln -s nova-novncproxy-source/* novnc
{% endif %}