On Mon, 2009-05-11 at 14:49 -0400, Chris Lumens wrote: > This prevents clearPartType from getting set to None, which causes problems > in shouldClear. These both look good. > --- > kickstart.py | 9 +++++---- > 1 files changed, 5 insertions(+), 4 deletions(-) > > diff --git a/kickstart.py b/kickstart.py > index eb79bd9..445107e 100644 > --- a/kickstart.py > +++ b/kickstart.py > @@ -1182,10 +1182,11 @@ def fullCommandPass(anaconda, file, earlyKS): > anaconda.id.storage.ignoredDisks = earlyKS.ignoredisk.ignoredisk > anaconda.id.storage.exclusiveDisks = earlyKS.ignoredisk.onlyuse > > - anaconda.id.storage.clearPartType = earlyKS.clearpart.type > - anaconda.id.storage.clearPartDisks = earlyKS.clearpart.drives > - if earlyKS.clearpart.initAll: > - anaconda.id.storage.reinitializeDisks = earlyKS.clearpart.initAll > + if earlyKS.clearpart.type is not None: > + anaconda.id.storage.clearPartType = earlyKS.clearpart.type > + anaconda.id.storage.clearPartDisks = earlyKS.clearpart.drives > + if earlyKS.clearpart.initAll: > + anaconda.id.storage.reinitializeDisks = earlyKS.clearpart.initAll > > storage.storageInitialize(anaconda) > _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list