#!/bin/sh
#
# Startup script for i8k utilities
#

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

# See how we were called.
case "$1" in
  start)
	echo -n "Starting i8k: "
	modprobe i8k
	echo done
	;;
  stop)
	echo -n "Shutting down i8k: "
	modprobe -r i8k
	echo done
	;;
  status)
	;;
  restart)
	$0 stop
	$0 start
	;;
  *)
	echo "Usage: i8k {start|stop|restart|status}"
	exit 1
esac

exit 0

