Change version of noVNC to stable
In master branch of noVNC project file vnc_auto.html was renamed to vnc_lite.html Because of that nova-novncproxy looks for file that actually doesn't exist. We need to change branch of noVNC to latest stable, because other projects are not ready yet to rename the path. Those projects depends on noVNC package installed in system, but it is too old for now for both CentOS (version 0.5) and Ubuntu (version 0.4). The only way to make noVNC console working on Devstack is to change the branch to stable one. Unit test also has to be modified in order to ignore novnc repo from checking against cloning non-master branch. Change-Id: Iaf4761aedf93bc6b914a6a0c5cf1cfedcc29583c Closes-bug: #1692513
This commit is contained in:
parent
be43083d93
commit
24bb870492
2
stackrc
2
stackrc
@ -547,7 +547,7 @@ IRONIC_PYTHON_AGENT_BRANCH=${IRONIC_PYTHON_AGENT_BRANCH:-master}
|
|||||||
|
|
||||||
# a websockets/html5 or flash powered VNC console for vm instances
|
# a websockets/html5 or flash powered VNC console for vm instances
|
||||||
NOVNC_REPO=${NOVNC_REPO:-https://github.com/kanaka/noVNC.git}
|
NOVNC_REPO=${NOVNC_REPO:-https://github.com/kanaka/noVNC.git}
|
||||||
NOVNC_BRANCH=${NOVNC_BRANCH:-master}
|
NOVNC_BRANCH=${NOVNC_BRANCH:-stable/v0.6}
|
||||||
|
|
||||||
# a websockets/html5 or flash powered SPICE console for vm instances
|
# a websockets/html5 or flash powered SPICE console for vm instances
|
||||||
SPICE_REPO=${SPICE_REPO:-http://anongit.freedesktop.org/git/spice/spice-html5.git}
|
SPICE_REPO=${SPICE_REPO:-http://anongit.freedesktop.org/git/spice/spice-html5.git}
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
echo "Ensuring we don't have crazy refs"
|
echo "Ensuring we don't have crazy refs"
|
||||||
|
|
||||||
REFS=`grep BRANCH stackrc | grep -v -- '-master' | grep -v -- '-stable/ocata'`
|
REFS=`grep BRANCH stackrc | grep -v -- '-master' | grep -v -- '-stable/ocata' | grep -v 'NOVNC_BRANCH'`
|
||||||
rc=$?
|
rc=$?
|
||||||
if [[ $rc -eq 0 ]]; then
|
if [[ $rc -eq 0 ]]; then
|
||||||
echo "Branch defaults must be master. Found:"
|
echo "Branch defaults must be master. Found:"
|
||||||
|
Loading…
Reference in New Issue
Block a user