#!/bin/sh
#
# Start the network....
#

start() {
 	#echo "Starting all..."
 	/usr/local/stupid-ftpd/stupid-ftpd.Linux6
}	
stop() {
	echo "Stop" 
}
restart() {
	echo "restart"
}	

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

exit $?

