[go: up one dir, main page]

Menu

[r1]: / bkstart  Maximize  Restore  History

Download this file

15 lines (14 with data), 208 Bytes

#!/bin/sh
#
# chkconfig: 3 99 99
# description: load hcp cpint module
#
#
case "$1" in
'start')
       modprobe cpint
       ;;
'stop')
       echo "HELP, I cannot stop! (ignore this message)"
       ;;
esac