summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-06-04 18:59:12 +0000
committerJeremy Katz <katzj@redhat.com>2007-06-04 18:59:12 +0000
commit19dce6c4a0cb6e1f07287e5982bc33c618fb7d92 (patch)
tree4f033eef5f90b93ea4aaba4b27a1ee3b546d4777 /installclass.py
parentf16f9e5bcc3b4c563a57ae3a3d96a1814c0eaac2 (diff)
downloadanaconda-19dce6c4a0cb6e1f07287e5982bc33c618fb7d92.tar.gz
anaconda-19dce6c4a0cb6e1f07287e5982bc33c618fb7d92.tar.xz
anaconda-19dce6c4a0cb6e1f07287e5982bc33c618fb7d92.zip
2007-06-04 Jeremy Katz <katzj@redhat.com>
* installclass.py (BaseInstallClass.setSteps): Permanently skip task selection and group selection if our backend doesn't support package selection (#242083)
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/installclass.py b/installclass.py
index ccecac019..c9e7157bb 100644
--- a/installclass.py
+++ b/installclass.py
@@ -176,7 +176,8 @@ class BaseInstallClass:
# allow backends to disable interactive package selection
if not anaconda.backend.supportsPackageSelection:
- dispatch.skipStep("tasksel", skip = 1)
+ dispatch.skipStep("tasksel", skip = 1, permanent=1)
+ dispatch.skipStep("group-selection", skip = 1, permanent=1)
# allow install classes to turn off the upgrade
if not self.showUpgrade or not anaconda.backend.supportsUpgrades: