summaryrefslogtreecommitdiffstats
path: root/vnc.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-06-05 19:47:35 +0000
committerChris Lumens <clumens@redhat.com>2007-06-05 19:47:35 +0000
commit4f32704cd9cc4845514550719263221c4bf0e167 (patch)
tree1caaf8c05b15843ea2855da0226a340733f25084 /vnc.py
parent44e8b8ac9123e8d4f3504e4cd2416e3dfc5a8079 (diff)
downloadanaconda-4f32704cd9cc4845514550719263221c4bf0e167.tar.gz
anaconda-4f32704cd9cc4845514550719263221c4bf0e167.tar.xz
anaconda-4f32704cd9cc4845514550719263221c4bf0e167.zip
Pass -br to the X server so there's no more hatch (#195919).
Diffstat (limited to 'vnc.py')
-rw-r--r--vnc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vnc.py b/vnc.py
index 103b92ae3..74f3c0f05 100644
--- a/vnc.py
+++ b/vnc.py
@@ -250,7 +250,7 @@ def startVNCServer(vncpassword="", root='/', vncconnecthost="",
if not vncpid:
args = [ root + "/usr/bin/Xvnc", ":1", "-nevershared",
- "-depth", "16", "-geometry", "800x600",
+ "-depth", "16", "-geometry", "800x600", "-br",
"IdleTimeout=0", "-auth", "/dev/null", "-once",
"DisconnectClients=false", "desktop=%s" % (desktopname,)]