This file is indexed.

/usr/share/initramfs-tools/scripts/local-bottom/iscsi is in open-iscsi 2.0.874-5ubuntu2.

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
#!/bin/sh
# If iscsiuio is present in the initramfs, and it was started by us,
# stop it again so the system iscsiuio can take over later.
if [ -x /sbin/iscsiuio ] && [ -e /run/initramfs/iscsiuio.pid ] ; then
	start-stop-daemon --stop --quiet --retry=TERM/10/KILL/5 \
		--pidfile /run/initramfs/iscsiuio.pid \
		--name iscsiuio --exec /sbin/iscsiuio || :
fi

exit 0