On 05/04/2009 11:18 AM, Chris Lumens wrote:
--- iw/autopart_type.py | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/iw/autopart_type.py b/iw/autopart_type.py index 1b35573..164f069 100644 --- a/iw/autopart_type.py +++ b/iw/autopart_type.py @@ -175,10 +175,16 @@ class PartitionTypeWindow(InstallWindow): self.storage.encryptionPassphrase = "" self.storage.retrofitPassphrase = False self.storage.encryptedAutoPart = False - - self.storage.doAutoPart = True + self.storage.clearPartType = val + # If this is an interactive kickstart install, do not set + # doAutoPart as that'll set us up to try to make the default + # partitioning layout after applying whatever was in the + # kickstart file. + if not self.anaconda.isKickstart: + self.storage.doAutoPart = True + allowdrives = [] model = self.drivelist.get_model() for row in model:
Looks good. -- David Cantrell <dcantrell@xxxxxxxxxx> Red Hat / Honolulu, HI _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list