summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorMartin Sivak <msivak@redhat.com>2007-11-22 10:32:49 +0100
committerMartin Sivak <msivak@redhat.com>2007-11-22 10:32:49 +0100
commit9a3f783d0826d54705e9a6725fd6777fcd99f562 (patch)
tree7046da035931e51c3c8aa1c6bdca368136c36a6c /backend.py
parent8905e5d37edca1f84f85a4e0e35767ff76b58c45 (diff)
downloadanaconda-9a3f783d0826d54705e9a6725fd6777fcd99f562.tar.gz
anaconda-9a3f783d0826d54705e9a6725fd6777fcd99f562.tar.xz
anaconda-9a3f783d0826d54705e9a6725fd6777fcd99f562.zip
Use input %packages section for anaconda-ks.cfg (#280101)
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend.py b/backend.py
index e42477fb1..3efcac86f 100644
--- a/backend.py
+++ b/backend.py
@@ -152,7 +152,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
@@ -194,5 +194,5 @@ def writeConfiguration(anaconda):
log.info("Writing main configuration")
if not flags.test:
anaconda.backend.writeConfiguration()
- anaconda.id.write(anaconda)
+ anaconda.id.write()