summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-10-23 22:52:08 +0000
committerJeremy Katz <katzj@redhat.com>2003-10-23 22:52:08 +0000
commit718e77dfd51bdadf8c53a580d52354f90296fde8 (patch)
tree104b19ba90fdbb219edcc9b01388942f24b417a4 /kickstart.py
parent33f3598460bd3f8945fc8a0ea2a185e6634fad7d (diff)
downloadanaconda-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
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py5
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