home *** CD-ROM | disk | FTP | other *** search
- #! /bin/sh
-
- # /etc/init.d/isapnp: configure Plug and Play boards
-
- test -x /sbin/isapnp || exit 0
-
- case "$1" in
- start)
- if [ -r /etc/isapnp.conf ]; then
- /sbin/isapnp /etc/isapnp.conf
- fi
- ;;
-
- stop|force-reload|restart)
- ;;
-
- *)
- echo "Usage: $0 {start|stop|restart|force-reload}"
- exit 1
- esac
-
- exit 0
-