#!/bin/sh
# /etc/rc2.d/S0799fusa
# usage: start up the fusa daemon in the event
#        the server hungs or needs rebooting.
# history:   7-26-99 created
# Note:  This script is added in the /etc/rc2.d directory in Solaris
#            Generic startup script.
 

CASE "$1" in
'start')
        if  [ -f /data/Transact/tms-settle-s/bin/fusa_auth start]; then
                echo 'starting fusa_auth daemon'
        fi
        ;;
'stop')
        if [ -f /data/Transact/tms-settle-s/bin/fusa_auth stop]; then
                echo 'stopping fusa_auth daemon'
        fi
        ;;
*)
        echo "Usage: $0 { start | stop }"
        exit 1
        ;;
esac
exit 0