summaryrefslogtreecommitdiffstats
path: root/pyanaconda/installclass.py
diff options
context:
space:
mode:
authorAles Kozumplik <akozumpl@redhat.com>2011-05-05 18:14:43 +0200
committerAles Kozumplik <akozumpl@redhat.com>2011-05-19 13:40:35 +0200
commitf4bd88883ff2e564d8af0c110feaeec205018a4f (patch)
tree0dc7353875bbaf686ea509b5e2d6d723aedac85f /pyanaconda/installclass.py
parent2f899c92a2925b4bfbec745066980fb992e0ae22 (diff)
downloadanaconda-f4bd88883ff2e564d8af0c110feaeec205018a4f.tar.gz
anaconda-f4bd88883ff2e564d8af0c110feaeec205018a4f.tar.xz
anaconda-f4bd88883ff2e564d8af0c110feaeec205018a4f.zip
dispatch: All skips are permanent now.
That means skipStep("step", permanent=1) is redundant. Also, since the new dispatch interface does not support it, remove the skip=1 argument.
Diffstat (limited to 'pyanaconda/installclass.py')
-rw-r--r--pyanaconda/installclass.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/pyanaconda/installclass.py b/pyanaconda/installclass.py
index fcd3f1472..ac21f69a0 100644
--- a/pyanaconda/installclass.py
+++ b/pyanaconda/installclass.py
@@ -125,24 +125,24 @@ class BaseInstallClass(object):
)
if not isBeta:
- dispatch.skipStep("betanag", permanent=1)
+ dispatch.skipStep("betanag")
if iutil.isEfi() or not iutil.isX86():
- dispatch.skipStep("bootloader", permanent=1)
+ dispatch.skipStep("bootloader")
# allow backends to disable interactive package selection
if not anaconda.backend.supportsPackageSelection:
- dispatch.skipStep("tasksel", skip = 1, permanent=1)
- dispatch.skipStep("group-selection", skip = 1, permanent=1)
+ dispatch.skipStep("tasksel")
+ dispatch.skipStep("group-selection")
# allow install classes to turn off the upgrade
if not self.showUpgrade or not anaconda.backend.supportsUpgrades:
- dispatch.skipStep("findrootparts", skip = 1)
+ dispatch.skipStep("findrootparts")
# 'noupgrade' can be used on the command line to force not looking
# for partitions to upgrade. useful in some cases...
if flags.cmdline.has_key("noupgrade"):
- dispatch.skipStep("findrootparts", skip = 1)
+ dispatch.skipStep("findrootparts")
# upgrade will also always force looking for an upgrade.
if flags.cmdline.has_key("upgrade"):