diff options
author | David Cantrell <dcantrell@redhat.com> | 2006-05-17 14:38:42 +0000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2006-05-17 14:38:42 +0000 |
commit | d80ed88c7aa363fd1e3fd9e81857ef655c495e5c (patch) | |
tree | 2261f382c61554ad7e6ee209a54160751b94387c | |
parent | 062bf8334fc8343ec34ecc51653da88071da56a2 (diff) | |
download | anaconda-d80ed88c7aa363fd1e3fd9e81857ef655c495e5c.tar.gz anaconda-d80ed88c7aa363fd1e3fd9e81857ef655c495e5c.tar.xz anaconda-d80ed88c7aa363fd1e3fd9e81857ef655c495e5c.zip |
Removed references to steps that don't exist anymore.
-rw-r--r-- | installclass.py | 7 | ||||
-rw-r--r-- | kickstart.py | 5 | ||||
-rw-r--r-- | upgradeclass.py | 3 |
3 files changed, 2 insertions, 13 deletions
diff --git a/installclass.py b/installclass.py index 8bf9ea6ae..b83228ae1 100644 --- a/installclass.py +++ b/installclass.py @@ -119,7 +119,6 @@ class BaseInstallClass: "zfcpconfig", "partitionmethod", "partitionobjinit", - "partitionmethodsetup", "parttype", "autopartition", "autopartitionexecute", @@ -131,15 +130,10 @@ class BaseInstallClass: "network", "timezone", "accounts", - "readcomps", - "selectlangpackages", "reposetup", "basepkgsel", "tasksel", "postselection", - "handleX11pkgs", - "handlemiscpkgs", - "fixupconditionals", "confirminstall", "install", "enablefilesystems", @@ -199,7 +193,6 @@ class BaseInstallClass: pass else: dispatch.skipStep("keyboard", permanent = 1) - dispatch.skipStep("handleX11pkgs", permanent = 1) dispatch.skipStep("writexconfig", permanent = 1) def setPackageSelection(self, anaconda): diff --git a/kickstart.py b/kickstart.py index e50d6a5d2..3fe3fc621 100644 --- a/kickstart.py +++ b/kickstart.py @@ -530,8 +530,7 @@ class AnacondaKSHandlers(KickstartHandlers): def doSkipX(self, id, args): KickstartHandlers.doSkipX(self, args) self.skipSteps.extend(["checkmonitorok", "setsanex", "videocard", - "monitor", "xcustom", "handleX11pkgs", - "writexconfig"]) + "monitor", "xcustom", "writexconfig"]) if id.xsetup is not None: id.xsetup.skipx = 1 @@ -593,7 +592,7 @@ class AnacondaKSHandlers(KickstartHandlers): dict["startX"]) id.instClass.setDesktop(id, dict["defaultdesktop"]) self.skipSteps.extend(["videocard", "monitor", "xcustom", - "handleX11pkgs", "checkmonitorok", "setsanex"]) + "checkmonitorok", "setsanex"]) def doZeroMbr(self, id, args): KickstartHandlers.doZeroMbr(self, args) diff --git a/upgradeclass.py b/upgradeclass.py index c393dfdbb..5ce350548 100644 --- a/upgradeclass.py +++ b/upgradeclass.py @@ -39,11 +39,8 @@ class InstallClass(BaseInstallClass): "upgrademigfind", "upgrademigratefs", "upgradecontinue", - "readcomps", "reposetup", "upgbootloader", - "handlemiscpkgs", - "fixupconditionals", "checkdeps", "dependencies", "confirmupgrade", |