diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-10-23 22:52:08 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-10-23 22:52:08 +0000 |
commit | 718e77dfd51bdadf8c53a580d52354f90296fde8 (patch) | |
tree | 104b19ba90fdbb219edcc9b01388942f24b417a4 | |
parent | 33f3598460bd3f8945fc8a0ea2a185e6634fad7d (diff) | |
download | anaconda-718e77dfd51bdadf8c53a580d52354f90296fde8.tar.gz anaconda-718e77dfd51bdadf8c53a580d52354f90296fde8.tar.xz anaconda-718e77dfd51bdadf8c53a580d52354f90296fde8.zip |
revert 1.199 -> 1.200 (was to fix #100892)
this was causing weird behavior and not quite working, I'd rather go back
to the old behavior that I completely understand than something new at this
point
-rw-r--r-- | kickstart.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kickstart.py b/kickstart.py index 152cb8d30..b3bad114f 100644 --- a/kickstart.py +++ b/kickstart.py @@ -782,7 +782,6 @@ class KickstartBase(BaseInstallClass): type = CLEARPART_TYPE_NONE self.setClearParts(id, type, drives, initAll = initAll) - self.skipSteps.append("autopartition") # this adds a partition to the autopartition list replacing anything # else with this mountpoint so that you can use autopart and override / @@ -808,6 +807,8 @@ class KickstartBase(BaseInstallClass): self.skipSteps.append("partitionmethod") self.skipSteps.append("partitionmethodsetup") self.skipSteps.append("fdisk") + self.skipSteps.append("autopartition") + def defineLogicalVolume(self, id, args): (args, extra) = isys.getopt(args, '', [ 'vgname=', @@ -1211,6 +1212,7 @@ class KickstartBase(BaseInstallClass): self.skipSteps.append("partitionmethod") self.skipSteps.append("partitionmethodsetup") self.skipSteps.append("fdisk") + self.skipSteps.append("autopartition") def setSteps(self, dispatch): if self.installType == "upgrade": @@ -1238,6 +1240,7 @@ class KickstartBase(BaseInstallClass): dispatch.skipStep("partitionmethod") dispatch.skipStep("partitionmethodsetup") dispatch.skipStep("fdisk") + dispatch.skipStep("autopartition") dispatch.skipStep("bootdisk") # because these steps depend on the monitor being probed |