diff options
author | André Bierwolf <a.b.bierwolf@gmail.com> | 2017-08-17 07:35:48 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2017-08-17 08:15:41 +0000 |
commit | e0a6665f8b44d4478681c3f31012f0a0d5f920b7 (patch) | |
tree | 37034b129b3995665c9edf322792335df1241165 /testing/kimchi/alpine-specific-kimchi.api.patch | |
parent | 201504f7f90814d1fd2b0036f35d5d3a2f1437d9 (diff) | |
download | aports-e0a6665f8b44d4478681c3f31012f0a0d5f920b7.tar.bz2 aports-e0a6665f8b44d4478681c3f31012f0a0d5f920b7.tar.xz |
Upgraded to version 2.5.0 and added a patch to make novnc console work
Diffstat (limited to 'testing/kimchi/alpine-specific-kimchi.api.patch')
-rw-r--r-- | testing/kimchi/alpine-specific-kimchi.api.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/kimchi/alpine-specific-kimchi.api.patch b/testing/kimchi/alpine-specific-kimchi.api.patch new file mode 100644 index 0000000000..e092f46c70 --- /dev/null +++ b/testing/kimchi/alpine-specific-kimchi.api.patch @@ -0,0 +1,20 @@ +--- a/ui/js/src/kimchi.api.js ++++ b/ui/js/src/kimchi.api.js +@@ -324,7 +324,7 @@ + url += server_root; + url += "/plugins/kimchi/serial/html/serial.html"; + url += "?port=" + proxy_port; +- url += "&path=" + server_root + "/websockify"; ++ url += "&path=" + server_root + "websockify"; + url += "?token=" + wok.urlSafeB64Encode(vm+'-console').replace(/=*$/g, ""); + url += '&encrypt=1'; + window.open(url); +@@ -348,7 +348,7 @@ + url += server_root; + url += "/plugins/kimchi/novnc/vnc_auto.html"; + url += "?port=" + proxy_port; +- url += "&path=" + server_root + "/websockify"; ++ url += "&path=" + server_root + "websockify"; + /* + * From python documentation base64.urlsafe_b64encode(s) + * substitutes - instead of + and _ instead of / in the |