Hi,

As an application developer, I want that the partition should be created only for the first time. One of my kickstart files does that in the following manner:

clearpart --all --initlabel
part / --size=8000 --asprimary --fstype ext3
part /var --size=8000 --asprimary --fstype ext3
part swap --recommended --asprimary
part /perm --size=1 --grow --asprimary --fstype ext3

After the partitions are created, I want that these partitions should only be re-formatted during subsequent installation. I have a separate kickstart file for subsequent installations. But I cant seem to figure out a way how to do that with out clearpart and re-creating everything.

Can someone please let me out?

Sambit