diff options
author | Jeremy Katz <katzj@redhat.com> | 2005-02-28 17:59:27 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2005-02-28 17:59:27 +0000 |
commit | f15e7697f1f28854cb25230b160e41eb9bdbbf5a (patch) | |
tree | f161f1706667d8c5bf28dd432019e06857a012cb /anaconda | |
parent | b96ef78ebfbc3394efdc55fa71f78a18f063555c (diff) | |
download | anaconda-f15e7697f1f28854cb25230b160e41eb9bdbbf5a.tar.gz anaconda-f15e7697f1f28854cb25230b160e41eb9bdbbf5a.tar.xz anaconda-f15e7697f1f28854cb25230b160e41eb9bdbbf5a.zip |
2005-02-28 Jeremy Katz <katzj@redhat.com>
* anaconda (startVNCServer): Add -once to help ensure Xnvc exits
when last client of the server exits (#137337)
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -143,7 +143,7 @@ def startVNCServer(vncpassword=None, root='/', vncconnecthost=None, if not vncpid: args = [ root + "/usr/bin/Xvnc", ":1", "-nevershared", "-depth", "16", "-geometry", "800x600", - "IdleTimeout=0", "-auth", "/dev/null" + "IdleTimeout=0", "-auth", "/dev/null", "-once" "DisconnectClients=false", "desktop=%s" % (desktopname,)] # set passwd if necessary |