xen/xen-tightvnc-args.diff

15 lines
688 B
Diff

Index: xen-3.2-testing/tools/python/xen/xm/create.py
===================================================================
--- xen-3.2-testing.orig/tools/python/xen/xm/create.py
+++ xen-3.2-testing/tools/python/xen/xm/create.py
@@ -980,8 +980,7 @@ def spawn_vnc(display):
returns the port that the vncviewer is listening on and sets the global
vncpid. On failure, returns 0. Note that vncviewer is daemonized.
"""
- vncargs = (["vncviewer", "-log", "*:stdout:0",
- "-listen", "%d" % (VNC_BASE_PORT + display) ])
+ vncargs = (["vncviewer", "-listen", "%d" % (display) ])
global vncpid
vncpid = daemonize("vncviewer", vncargs)
if vncpid == 0: