summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2001-03-02 21:30:54 +0000
committerBill Nottingham <notting@redhat.com>2001-03-02 21:30:54 +0000
commit2eedec90435be5c8ee0bedccd60c4a6a87503d95 (patch)
tree7f0542b9a2aff007d3550f555069df1365451df8 /text.py
parentfbfe624e7709fb5c082aa71adf426fd9c279a99c (diff)
downloadanaconda-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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/text.py b/text.py
index 93b2bdb86..f7cedd67e 100644
--- a/text.py
+++ b/text.py
@@ -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: