summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-06-26 18:58:54 +0000
committerChris Lumens <clumens@redhat.com>2007-06-26 18:58:54 +0000
commitf4459327fb2f0c8c5d71f1b2d80dce7cb43034ec (patch)
treec325b87ce1432f4cf50b06c0563e2a9a351c7db4 /backend.py
parent13f58e367f918320ce7f5be2e08c6a02ff90a087 (diff)
downloadanaconda-f4459327fb2f0c8c5d71f1b2d80dce7cb43034ec.tar.gz
anaconda-f4459327fb2f0c8c5d71f1b2d80dce7cb43034ec.tar.xz
anaconda-f4459327fb2f0c8c5d71f1b2d80dce7cb43034ec.zip
Add a method to write out repo lines to the anaconda-ks.cfg file for all
enabled add-on repositories (#206152).
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/backend.py b/backend.py
index 9dfd309c4..1fa1311a7 100644
--- a/backend.py
+++ b/backend.py
@@ -152,14 +152,22 @@ class AnacondaBackend:
log.warning("getDefaultGroups not implemented for backend!")
pass
+ # write out the %packages section of anaconda-ks.cfg
def writePackagesKS(self, f):
log.warning("writePackagesKS not implemented for backend!")
pass
+ # write out any config files that live on the installed system
+ # (e.g., /etc/yum.repos.d/* files)
def writeConfiguration(self):
log.warning("writeConfig not implemented for backend!")
pass
+ # write out any other kickstart bits the backend requires - no warning
+ # here because this may not be needed
+ def writeKS(self, f):
+ pass
+
def getRequiredMedia(self):
log.warning("getRequiredMedia not implmented for backend!")
pass