summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/backend.py b/backend.py
index 6f0aaf8f6..ad0285eed 100644
--- a/backend.py
+++ b/backend.py
@@ -220,6 +220,10 @@ class AnacondaBackend:
log.warning("getDefaultGroups not implemented for backend!")
raise NotImplementedError
+ def resetPackageSelections(self):
+ # 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!")
@@ -265,6 +269,7 @@ def doInstall(anaconda):
# does this need to be per-backend? we'll just leave here until it does :)
def doBasePackageSelect(anaconda):
+ anaconda.backend.resetPackageSelections()
if anaconda.isKickstart:
kickstart.selectPackages(anaconda)
else: