#! /bin/sh
#
# chkconfig: 3 99 20
# description:  fbsng - Farm Batch System Next Generation	

case "$1" in
  start)
	/usr/local/farms/bin/start_lch.sh 
	exit 0
  ;;	
  stop)
  ;;
 
  *)
        echo "Usage: 'fbsng <start|stop>'"
esac                                                                            
