/usr/share/bug/multipath-tools/script is in multipath-tools 0.5.0-6+deb8u2.
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
CONFIG_FILE=/etc/multipath.conf
exec >&3
if [ -e "$CONFIG_FILE" ]; then
printf "Contents of $CONFIG_FILE:\n"
grep -Ev "^([[:space:]]*#|$)" $CONFIG_FILE
else
printf "$CONFIG_FILE does not exist.\n"
fi
printf "\n"
|