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

  1. #! /bin/sh
  2.  
  3. # /etc/init.d/isapnp: configure Plug and Play boards
  4.  
  5. test -x /sbin/isapnp || exit 0
  6.  
  7. case "$1" in
  8.     start)
  9.     if [ -r /etc/isapnp.conf ]; then
  10.         /sbin/isapnp /etc/isapnp.conf
  11.     fi
  12.     ;;
  13.     
  14.     stop|force-reload|restart)
  15.     ;;
  16.  
  17.     *)
  18.     echo "Usage: $0 {start|stop|restart|force-reload}"
  19.     exit 1
  20. esac
  21.  
  22. exit 0
  23.