aboutsummaryrefslogtreecommitdiffstats
path: root/tools/python
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-02-04 12:43:11 +0000
committerKeir Fraser <keir.fraser@citrix.com>2009-02-04 12:43:11 +0000
commit149748770bf72c2c6b51d2d1b56ec8d140dd9c7c (patch)
tree383e767b57ce3a6bc31a91581e10e1b636a2cd99 /tools/python
parente0d92ea91c12a27b1e8a41ec8647f0d50a6433d9 (diff)
downloadxen-149748770bf72c2c6b51d2d1b56ec8d140dd9c7c.tar.gz
xen-149748770bf72c2c6b51d2d1b56ec8d140dd9c7c.tar.bz2
xen-149748770bf72c2c6b51d2d1b56ec8d140dd9c7c.zip
xend: fix vncconsole option
From: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'tools/python')
-rw-r--r--tools/python/xen/xend/image.py2
-rw-r--r--tools/python/xen/xm/create.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/tools/python/xen/xend/image.py b/tools/python/xen/xend/image.py
index 9db58e2153..99111c9ccc 100644
--- a/tools/python/xen/xend/image.py
+++ b/tools/python/xen/xend/image.py
@@ -372,8 +372,6 @@ class ImageHandler:
env['DISPLAY'] = self.display
if self.xauthority:
env['XAUTHORITY'] = self.xauthority
- if self.vncconsole:
- args = args + ([ "-vncviewer" ])
unique_id = "%i-%i" % (self.vm.getDomid(), time.time())
sentinel_path = sentinel_path_prefix + unique_id
sentinel_path_fifo = sentinel_path + '.fifo'
diff --git a/tools/python/xen/xm/create.py b/tools/python/xen/xm/create.py
index 31d3623749..f87f5ccc53 100644
--- a/tools/python/xen/xm/create.py
+++ b/tools/python/xen/xm/create.py
@@ -1337,7 +1337,7 @@ def main(argv):
elif not opts.is_xml:
dom = make_domain(opts, config)
- if opts.vals.vncviewer:
+ if opts.vals.vncconsole:
domid = domain_name_to_domid(sxp.child_value(config, 'name', -1))
vncviewer_autopass = getattr(opts.vals,'vncviewer-autopass', False)
console.runVncViewer(domid, vncviewer_autopass, True)