12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #! /bin/sh -e
- # configure the GPIB driver
- PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin
- gpib_start()
- {
- chmod 666 /dev/gpib*
- gpib_config
- }
- gpib_stop()
- {
- chmod 660 /dev/gpib*
- }
- gpib_status()
- {
- ls -l /dev/gpib*
- }
- case "$1" in
- start)
- gpib_start
- ;;
- restart|force-reload|reload)
- gpib_stop
- gpib_start
- ;;
- stop)
- gpib_stop
- ;;
- status)
- gpib_status
- ;;
- *)
- echo "Usage: $0 {start|stop|restart|reload|force-reload}"
- exit 1
- ;;
- esac
- exit 0
|