summaryrefslogtreecommitdiffstats
path: root/packages.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-06-27 19:00:21 +0000
committerMatt Wilson <msw@redhat.com>2001-06-27 19:00:21 +0000
commit8bf1c802aade8d49dc1232a3f4b76c31559833b6 (patch)
treef22e29fcbbe94e3b524033a0bbec786dfff23d45 /packages.py
parenta08363ea14356bc4077d922c80c0584db10b51ac (diff)
downloadanaconda-8bf1c802aade8d49dc1232a3f4b76c31559833b6.tar.gz
anaconda-8bf1c802aade8d49dc1232a3f4b76c31559833b6.tar.xz
anaconda-8bf1c802aade8d49dc1232a3f4b76c31559833b6.zip
defer writing inittab rl default and desktop until after we config X - write it at the same time we write the X config. Fixed writing of /etc/sysconfig/desktop
Diffstat (limited to 'packages.py')
-rw-r--r--packages.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages.py b/packages.py
index 7e1db8944..be150ba8d 100644
--- a/packages.py
+++ b/packages.py
@@ -44,7 +44,7 @@ def queryUpgradeContinue(intf, dir):
def writeConfiguration(id, instPath):
log("Writing main configuration")
if not flags.test:
- id.write(instPath)
+ id.write(instPath)
def writeKSConfiguration(id, instPath):
log("Writing autokickstart file")
@@ -79,6 +79,7 @@ def writeXConfiguration(id, instPath):
fn = "/tmp/"
id.xconfig.write(fn+"/etc/X11")
+ id.desktop.write(instpath)
def readPackages(intf, method, id):
if (not id.hdList):