summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Bentele2021-09-10 08:38:11 +0200
committerManuel Bentele2021-09-10 08:38:11 +0200
commit120f736a10f3783cfd800fcf427b966ba74856fe (patch)
treebbc270d6d60a9fc0ef9f41585b8f0c804ecfd397
parent[qemu] Fix invalid disk storage type for CDROMs (diff)
downloadmltk-120f736a10f3783cfd800fcf427b966ba74856fe.tar.gz
mltk-120f736a10f3783cfd800fcf427b966ba74856fe.tar.xz
mltk-120f736a10f3783cfd800fcf427b966ba74856fe.zip
[qemu] Fix invalid path for looking-glass-client to shm file
-rw-r--r--core/modules/qemu/runvirt-plugin-qemu/src/main/java/org/openslx/runvirt/viewer/ViewerLookingGlassClient.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/modules/qemu/runvirt-plugin-qemu/src/main/java/org/openslx/runvirt/viewer/ViewerLookingGlassClient.java b/core/modules/qemu/runvirt-plugin-qemu/src/main/java/org/openslx/runvirt/viewer/ViewerLookingGlassClient.java
index dd98b33b..6a1b9c83 100644
--- a/core/modules/qemu/runvirt-plugin-qemu/src/main/java/org/openslx/runvirt/viewer/ViewerLookingGlassClient.java
+++ b/core/modules/qemu/runvirt-plugin-qemu/src/main/java/org/openslx/runvirt/viewer/ViewerLookingGlassClient.java
@@ -89,7 +89,7 @@ public class ViewerLookingGlassClient extends Viewer
if ( this.isDebugEnabled() ) {
viewerParameters = new String[] {
"app:renderer=OpenGL",
- "app:shmFile=" + "/dev/shm/" + ViewerLookingGlassClient.SHARED_MEMORY_FILENAME,
+ "app:shmFile=" + ViewerLookingGlassClient.SHARED_MEMORY_FILENAME,
"win:fullScreen=yes",
"spice:enable=yes",
"spice:host=" + GraphicsSpice.DEFAULT_ADDRESS,
@@ -99,7 +99,7 @@ public class ViewerLookingGlassClient extends Viewer
} else {
viewerParameters = new String[] {
"app:renderer=OpenGL",
- "app:shmFile=" + "/dev/shm/" + ViewerLookingGlassClient.SHARED_MEMORY_FILENAME,
+ "app:shmFile=" + ViewerLookingGlassClient.SHARED_MEMORY_FILENAME,
"win:fullScreen=yes",
"spice:enable=yes",
"spice:host=" + GraphicsSpice.DEFAULT_ADDRESS,