#! /bin/sh
#
# chkconfig: 2345 03 97
# description: Loads the LOMAC LKM
#
#

# See how we were called.
case "$1" in
  start)
	
	echo "Loading LOMAC LKM: "
	/opt/lomac/bin/startLOMAC

	;;
  *)
	echo "Usage: lomac start"
	exit 1
esac

exit 0
