Skip to content
Snippets Groups Projects
Commit e299720e authored by Christian Berendt's avatar Christian Berendt
Browse files

Fix ownership of nova-novncproxy-source directory

This solves the following issue when using latest noVNC sources for
the nova-novncproxy container:

OSError: [Errno 13] Permission denied: '/usr/share/novnc'

Change-Id: Iea1f3dfcc696f53431e99570019e27cdef4ca5cb
Closes-bug: #1593006
parent 2cb0f445
No related branches found
No related tags found
No related merge requests found
......@@ -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 %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment