#!/bin/sh
# Startup script for fx
#
# description: To be used by any required FX daemons.

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

[ -f /usr/sbin/anacron ] || exit 0

case "$1" in
  start)
		echo -n  "Starting fx: " 
		#daemon fx
		echo
		;;
	
  stop)
		echo -n "Shutting down fx "
		#killproc fx 
		echo
		;;
	
	status)
		status fx
		;;

	restart)
		$0 stop
		$0 start
		;;
	
  *)
		echo "Usage: fx {start|stop|restart|status}"
		exit 1

esac

exit 0
