When starting trio.

My startup script:

JAVA_HOME=/usr/java/j2re1.4.2_01
JETTY_HOME=/usr/local/jetty
JREC_HOME=/usr/local/jreceiver
TRIO_HOME=/home/trio
PATH=$PATH:$TRIO_HOME/bin:$JREC_HOME/bin
export JAVA_HOME JETTY_HOME JREC_HOME TRIO_HOME
case $1 in
stop ) jrec_jetty.sh stop
trio stop
;;
start ) jrec_jetty.sh start
# ( cd $TRIO_HOME ; trio start -x11 )
trio start -x11
;;
restart ) $0 stop ; $0 start ;;
* ) echo $0 start/stop ;;
esac


The trio script is basically the one supplied with a
minor change to use 'runlevel' instead of 'who'.




Thanks.


Attachments
4157-trio.xml (415 downloads)



Edited by gerald_clark (28/10/2003 18:08)