This file is indexed.

/usr/lib/dracut/modules.d/95fcoe/fcoe-edd.sh is in dracut-network 040+1-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

dcb=$1

if ! [ -d /sys/firmware/edd ]; then
    modprobe edd
    while ! [ -d /sys/firmware/edd ]; do sleep 0.1; done
fi

for disk in /sys/firmware/edd/int13_*; do
    [ -d $disk ] || continue
    for nic in ${disk}/pci_dev/net/*; do
        [ -d $nic ] || continue
        if [ -e ${nic}/address ]; then
	    fcoe_interface=${nic##*/}
	    if ! [ -e "/tmp/.fcoe-$fcoe_interface" ]; then
		/sbin/fcoe-up $fcoe_interface $dcb
		> "/tmp/.fcoe-$fcoe_interface"
	    fi
        fi
    done
done
modprobe -r edd