/etc/init.d/multipath-tools-boot is in multipath-tools 0.4.9-3ubuntu7.
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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | #! /bin/sh
### BEGIN INIT INFO
# Provides: multipath-tools-boot
# Required-Start: checkroot udev
# Required-Stop: checkroot udev
# Should-Start: module-init-tools
# Should-Stop: module-init-tools
# Default-Start: S
# Default-Stop:
# X-Start-Before: checkfs mountall
# X-Stop-After: umountfs
# Short-Description: early multipath boot script
# Description:
### END INIT INFO
PATH=/sbin:/bin
DAEMON=/sbin/multipath
NAME=multipath-tools-boot
DESC="Discovering and coalescing multipaths"
test -x $DAEMON || exit 0
. /lib/lsb/init-functions
VERBOSITY=0
if [ -f /etc/default/multipath-tools ] ; then
. /etc/default/multipath-tools
fi
set -e
case "$1" in
start)
log_action_begin_msg "$DESC"
modprobe dm-multipath 2> /dev/null || true
$DAEMON -v $VERBOSITY
log_action_end_msg $?
;;
stop)
;;
restart|force-reload)
$0 start
;;
*)
N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1
;;
esac
exit 0
|