diff options
author | Mike Fulbright <msf@redhat.com> | 2003-08-06 19:29:06 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2003-08-06 19:29:06 +0000 |
commit | fd4d419294cd7f0a1dff3a4377ba5642df2bed60 (patch) | |
tree | 2538f242c79ccfb4dfe95e2fc2a33b5d87fea612 /anaconda | |
parent | 31798ae251ee2c346616e6cb5a23fe706ef511b7 (diff) | |
download | anaconda-fd4d419294cd7f0a1dff3a4377ba5642df2bed60.tar.gz anaconda-fd4d419294cd7f0a1dff3a4377ba5642df2bed60.tar.xz anaconda-fd4d419294cd7f0a1dff3a4377ba5642df2bed60.zip |
some fixes to make diffs less verbose
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -124,18 +124,18 @@ def startVNCServer(vncpassword=None, root='/'): except: log("Unable to determine VNC server network info") - # figure out product info if srvname is not None: desktopname = _("%s %s installation on host %s") % (product.productName, product.productVersion, srvname) else: desktopname = _("%s %s installation") % (product.productName, product.productVersion) - + vncpid = os.fork() if not vncpid: args = [ root + "/usr/bin/Xvnc", ":1", "-nevershared", - "-depth", "16", "-geometry", "800x600", "DisconnectClients=false", "desktop=%s" % (desktopname,)] + "-depth", "16", "-geometry", "800x600", + "DisconnectClients=false", "desktop=%s" % (desktopname,)] # set passwd if necessary if vncpassword is not None: |