summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-01-20 21:42:43 +0000
committerChris Lumens <clumens@redhat.com>2006-01-20 21:42:43 +0000
commita50a83c8e9a271eccddebae22c1431bf041fabe2 (patch)
tree4905504eb555c6626e68e2df39ffc55173bd363f /backend.py
parent4d093939e33457bc9a9883c3db9cc4cfe8c155e9 (diff)
downloadanaconda-a50a83c8e9a271eccddebae22c1431bf041fabe2.tar.gz
anaconda-a50a83c8e9a271eccddebae22c1431bf041fabe2.tar.xz
anaconda-a50a83c8e9a271eccddebae22c1431bf041fabe2.zip
Write out %packages section in the template kickstart file.
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/backend.py b/backend.py
index 0cd4b7064..738b790f3 100644
--- a/backend.py
+++ b/backend.py
@@ -135,6 +135,10 @@ class AnacondaBackend:
log.warning("getDefaultGroups not implemented for backend!")
pass
+ def writePackagesKS(self, f):
+ log.warning("writePackagesKS not implemented for backend!")
+ pass
+
def doRepoSetup(backend, intf, id, instPath):
backend.doInitialSetup(id, instPath)
backend.doRepoSetup(intf, instPath)