| Server IP : 69.164.203.165 / Your IP : 216.73.216.219 Web Server : nginx/1.18.0 System : Linux localhost 6.14.3-x86_64-linode168 #1 SMP PREEMPT_DYNAMIC Mon Apr 21 19:47:55 EDT 2025 x86_64 User : www-data ( 33) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/discover/ |
Upload File : |
#!/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