diff options
author | Bill Nottingham <notting@redhat.com> | 2001-03-02 21:30:54 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-03-02 21:30:54 +0000 |
commit | 2eedec90435be5c8ee0bedccd60c4a6a87503d95 (patch) | |
tree | 7f0542b9a2aff007d3550f555069df1365451df8 /text.py | |
parent | fbfe624e7709fb5c082aa71adf426fd9c279a99c (diff) | |
download | anaconda-2eedec90435be5c8ee0bedccd60c4a6a87503d95.tar.gz anaconda-2eedec90435be5c8ee0bedccd60c4a6a87503d95.tar.xz anaconda-2eedec90435be5c8ee0bedccd60c4a6a87503d95.zip |
oops, unlink the right file too
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -592,7 +592,7 @@ class XconfiguratorWindow: log("Could not find Xconfigurator, skipping X configuration.") return INSTALL_NOOP - f = open (todo.instPath + "/tmp/SERVER", "w") + f = open (todo.instPath + "/var/run/SERVER", "w") if todo._cardindex == -1: f.write ("%d\n" % todo._cardindex) else: @@ -608,7 +608,7 @@ class XconfiguratorWindow: root = todo.instPath) screen.resume () todo.x.skip = 1 - os.unlink("/tmp/SERVER"); + os.unlink("/var/run/SERVER"); return INSTALL_NOOP class BeginInstallWindow: |