Merge "Fix ownership of nova-novncproxy-source directory"

This commit is contained in:
Jenkins 2016-06-16 17:26:17 +00:00 committed by Gerrit Code Review
commit ace7500372

View File

@ -19,7 +19,9 @@ RUN apt-get -y install --no-install-recommends \
{% elif install_type == 'source' %}
ADD nova-novncproxy-archive /usr/share/nova-novncproxy-source
RUN cd /usr/share && ln -s nova-novncproxy-source/* novnc
RUN cd /usr/share \
&& ln -s nova-novncproxy-source/* novnc \
&& chown -R nova: /usr/share/nova-novncproxy-source
{% endif %}