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