I am
trying to create a partition scheme in my kickstart file where I have the
following unknowns:
a) The target system may have IDE or SCSI
drives
2) The number of drives in any system
could be 1-3
The
following shows a snap of what I am doing in my ks.cfg, but it HARDCODES my SCSI
disk.
part
/boot --size 32 --fstype ext2 --asprimary --ondisk sda
So I need to create a second file (ks.cfg.ide) with the line
part /boot --size 32 --fstype ext2 --asprimary --ondisk hda
Is there any way I can do this with ONE file ? If I do not specify --ondisk, will it always take the first disk , irrespective of SCSI or IDE and configure that ?
Regards
Shourya