#!/bin/sh
#
# MMP project custom setting ....
#

start() {
 	echo "===> Starting MMP custom setting..."
 	
	cp -f /DISK1/launch.sh /tmp/;
}	
stop() {
	echo "===> Stopping custom setting..."
 	
	/bin/umount /NFS;
}
restart() {
	stop
	start
}	

case "$1" in
  start)
  	start
	;;
  stop)
  	stop
	;;
  restart|reload)
  	restart
	;;
  *)
	echo $"Usage: $0 {start|stop|restart}"
	exit 1
esac

exit $?

