home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2000 February
/
PCWorld_2000-02_cd.bin
/
live
/
etc
/
init.d
/
isapnp
< prev
next >
Wrap
Text File
|
1998-11-22
|
317b
|
23 lines
#! /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