summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-09-04 15:22:09 +0000
committerChris Lumens <clumens@redhat.com>2007-09-04 15:22:09 +0000
commit68f837317eb7ca1f71687a75380f8f0e9eba6c76 (patch)
tree484314c2083872c629fba9a531f3bbef2fcab07f /backend.py
parentb6e7d9015d1a5fec9d9dc87e844f88f8a54fcb12 (diff)
downloadanaconda-68f837317eb7ca1f71687a75380f8f0e9eba6c76.tar.gz
anaconda-68f837317eb7ca1f71687a75380f8f0e9eba6c76.tar.xz
anaconda-68f837317eb7ca1f71687a75380f8f0e9eba6c76.zip
If we did a kickstart install, use the %packages section from the ks file
instead of creating a new one.
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/backend.py b/backend.py
index 6bd5593bf..06db80510 100644
--- a/backend.py
+++ b/backend.py
@@ -157,7 +157,7 @@ class AnacondaBackend:
pass
# write out the %packages section of anaconda-ks.cfg
- def writePackagesKS(self, f):
+ def writePackagesKS(self, f, anaconda):
log.warning("writePackagesKS not implemented for backend!")
pass
@@ -206,6 +206,5 @@ def doBasePackageSelect(anaconda):
def writeConfiguration(anaconda):
log.info("Writing main configuration")
if not flags.test:
- anaconda.id.write(anaconda)
+ anaconda.id.write()
anaconda.backend.writeConfiguration()
-