summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-02-28 18:00:27 +0000
committerJeremy Katz <katzj@redhat.com>2005-02-28 18:00:27 +0000
commitf30cceebbc5c01ba9458e31a0b64b27aabc4a906 (patch)
tree8fb20585ab28d1b2e43d490cf299afd63f701196
parentb2582028fbe8fe0bb24324a0b62cca54f45a2a93 (diff)
downloadanaconda-f30cceebbc5c01ba9458e31a0b64b27aabc4a906.tar.gz
anaconda-f30cceebbc5c01ba9458e31a0b64b27aabc4a906.tar.xz
anaconda-f30cceebbc5c01ba9458e31a0b64b27aabc4a906.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)
-rw-r--r--ChangeLog5
-rwxr-xr-xanaconda2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ab53f9c7a..64bdd857d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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)
+
2005-02-24 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
diff --git a/anaconda b/anaconda
index bb8e14b3b..43379e9bd 100755
--- a/anaconda
+++ b/anaconda
@@ -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