Comment 1 for bug 623462

Revision history for this message
Floris (bos) wrote :

As a workaround I was trying to add a simple pre-installation script to our (kickstart) installation along the lines of:

==
modprobe iscsi_ibft

if [ -e /sys/firmware/ibft/target0/target-name ]; then

  modprobe iscsi_tcp
  iscsid

  iscsiadm -m node -o new -T `cat /sys/firmware/ibft/target0/target-name` -p `cat /sys/firmware/ibft/target0/ip-addr`:`cat /sys/firmware/ibft/target0/port`
  iscsiadm -m node -l

fi
==

But found out that doesn't work either, because the iscsi_ibft module is not present in the installation environment.

Could this module please be added?