#!/bin/sh

# Source function library.
. /etc/rc.d/init.d/functions

# See how we were called.
case "$1" in
  start)
	action "Starting Compaq Remote Insight Board Driver" \
	sh /lib/modules/Compaq/cpcpqrid start
	;;
  stop)
	action "Stopping Compaq Remote Insight Board Driver" \
	sh /lib/modules/Compaq/cpcpqrid stop
	;;
  status|restart|reload)
	# do not do anything; this is unreasonable
	:
	;;
  *)
	# do not advertise unreasonable commands that there is no reason
	# to use with this device
	echo "Usage: random {start|stop|status|restart|reload}"
	exit 1
esac

exit 0
