clearpart --all --initlabel
zerombr yes
# this dictacted by VMWare (3.X uess GRUB!)
bootloader --location=mbr

# part {mntpoint} --size {size} [--grow] [--onpart {partc}] [--ondisk {disk}] [-
-onprimary {N}] [--asprimary {N}]
# The default example should get you started and should be considered
# the minimum.  Other examples include:
# part / --size 500 --grow --ondisk hda #fill first IDE disk with / filesys
# part / --size 500 --grow --ondisk hdb #fill second IDE disk with / filesys
# part /opt --size 200 --onpart sdc2 #200M /opt on 3rd scsi disk partition 2
#  NOTE: This is tweaked for Proliants!  Change --ondisk if needed.

part /boot --size 100 --ondisk cciss/c0d0 --fstype ext3
part / --size 5000 --ondisk cciss/c0d0 --fstype ext3
part swap --size 1600 --ondisk cciss/c0d0 --fstype swap
part /home --size 2500 --ondisk cciss/c0d0 --fstype ext3
part /vmguests --size 500 --ondisk cciss/c0d0 --fstype ext3
part /vmimages --size 5000 --grow --ondisk cciss/c0d0 --fstype ext3
