summaryrefslogtreecommitdiffstats
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
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)
-rw-r--r--ChangeLog4
-rw-r--r--installclass.py3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c5b5ab66..2e9cb40f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
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)
+
* isys/smp.c (detectSMP): Build on arm (Lennert Buytenhek
<buyenh AT wantstofly DOT org>)
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: