I am trying to install RHEL 8.x on a DELL server with a BOSS card.
from DELL support [(Automating Operating System Deployment to Dell BOSS - Techniques for Different Operating Systems | Dell Singapore](https://DELL BOSS FAQ)) I need to have something like that in kickstart :
ks.cfg:
%include /tmp/bootdisk.cfg
%preUse DELLBOSS device for OS install if present.
BOSS_DEV=$(find /dev -name “DELLBOSS” -printf %P"\n" |
egrep -v -e part -e scsi| head -1)
if [ -n “$BOSS_DEV” ]; then
echo ignoredisk --only-use=“$BOSS_DEV” > /tmp/bootdisk.cfg
fi
%end
and a sample /tmp/bootdisk.cfg that contains the device name of the BOSS device that the installer should use.cat /tmp/bootdisk.cfg
ignoredisk --only-use=disk/by-id/ata-DELLBOSS_VD_6668c813b78a0010
How can i implement that with foreman ?