summaryrefslogtreecommitdiffstats
path: root/pyanaconda/backend.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-04-24 11:03:02 -0400
committerChris Lumens <clumens@redhat.com>2012-04-24 11:31:12 -0400
commit0d76185dcbe7ba133f4c3f177a9c12c87a5d9e0b (patch)
tree64629591b97155734ef862844ff084b82ffad64f /pyanaconda/backend.py
parent78000fce2750569b0b51add6a271dc29a32e441a (diff)
downloadanaconda-0d76185dcbe7ba133f4c3f177a9c12c87a5d9e0b.tar.gz
anaconda-0d76185dcbe7ba133f4c3f177a9c12c87a5d9e0b.tar.xz
anaconda-0d76185dcbe7ba133f4c3f177a9c12c87a5d9e0b.zip
Remove all the writeKS methods except in network and storage.
Those appear to have a lot of information still in them that may not be present either in pykickstart or elsewhere in anaconda. Those still won't be called, but I'm not yet comfortable removing them entirely. Also, use pykickstart to do the writeKS stuff now.
Diffstat (limited to 'pyanaconda/backend.py')
-rw-r--r--pyanaconda/backend.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/pyanaconda/backend.py b/pyanaconda/backend.py
index 8c15f0b7d..53e8a9f05 100644
--- a/pyanaconda/backend.py
+++ b/pyanaconda/backend.py
@@ -171,20 +171,11 @@ class AnacondaBackend:
# we just leave this one unimplemented if it's not needed
pass
- # write out the %packages section of anaconda-ks.cfg
- def writePackagesKS(self, f, anaconda):
- log.warning("writePackagesKS not implemented for backend!")
-
# 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!")
- # write out any other kickstart bits the backend requires - no warning
- # here because this may not be needed
- def writeKS(self, f):
- pass
-
def complete(self, anaconda):
pass