#!/bin/bash -e

### BEGIN INIT INFO
# Provides:          symform
# Required-Start:    $local_fs $remote_fs $network $syslog
# Required-Stop:     $local_fs $remote_fs $network $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start/stop symform
### END INIT INFO

SYMFORM_NODE_SH="/opt/symform/SymformNode.sh"

case $1 in
	start)
        $SYMFORM_NODE_SH start $2
        exit $?
	;;
	stop)
        $SYMFORM_NODE_SH stop $2
        exit $?
	;;
esac
exit 0
