Revert "Implemented option to skip packages selection in installclass"

This reverts commit 9bb56a32e9.

This should really be done in the Qubes install class.
This commit is contained in:
Joanna Rutkowska 2011-04-03 13:57:05 +02:00
parent 85b30a5f4c
commit b22bfadefa

View File

@ -51,8 +51,7 @@ class BaseInstallClass(object):
_descriptionFields = ()
name = "base"
pkgstext = ""
# default to showing the packages selection and upgrade options
showPackageSelection = True
# default to showing the upgrade option
showUpgrade = True
bootloaderTimeoutDefault = None
@ -129,7 +128,7 @@ class BaseInstallClass(object):
dispatch.skipStep("bootloader", permanent=1)
# allow backends to disable interactive package selection
if not self.showPackageSelection or not anaconda.backend.supportsPackageSelection:
if not anaconda.backend.supportsPackageSelection:
dispatch.skipStep("tasksel", skip = 1, permanent=1)
dispatch.skipStep("group-selection", skip = 1, permanent=1)