#!/sbin/sh
#
# Startup of Framemaker License Server  at boot time
# gfilippi  04/12/98
#
#******************************************************

PATH=/sbin:/usr/sbin:/usr/bin
export PATH

rval=0

#
# Get actual configuration 
#
FMHOME=/software/frame
export FMHOME 


case $1 in
start_msg)
        echo "Start Framemaker License Server "
        ;;

stop_msg)
        echo "Stop Framemaker License Server "
        ;;

'start')
        /bin/su - vltmgr -c '(nohup $FMHOME/bin/fm_fls $FMHOME/fminit/licenses &)'
        ;;

'stop')
        ;;

*)
        echo "usage: $0 {start|stop}"
        ;;
esac

exit
