/usr/share/discover/init-discover is in discover 2.1.2-7ubuntu1.
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 | #!/bin/sh -e
### BEGIN INIT INFO
# Provides: discover
# Required-Start: mountvirtfs checkroot $local_fs
# Required-Stop:
# Default-Start: S 1 2 3 4 5
# Default-Stop: 0 6
### END INIT INFO
# $Progeny$
test -x /sbin/discover-modprobe || exit 0
case "$1" in
start|restart)
if [ "$VERBOSE" = "no" ] ; then
discover-modprobe
else
discover-modprobe -v
fi
;;
stop|reload|force-reload)
exit 0
;;
*) echo "usage: /etc/init.d/discover [start|stop|force-reload]"
exit 1
esac
|