/usr/share/initramfs-tools/hooks/nbd is in nbd-client 1:3.8-4+deb8u3.
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 | #!/bin/sh
# We don't have any prerequirements
case $1 in
prereqs)
exit 0
;;
esac
. /usr/share/initramfs-tools/hook-functions
manual_add_modules nbd
auto_add_modules net
copy_exec /sbin/nbd-client /sbin
|