You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
265 B
16 lines
265 B
#!/bin/bash
|
|
|
|
source ./config.sh
|
|
cd ${BIN_DIR}
|
|
|
|
for((i=1;i<=$FRAMESYNC_COUNT;i++))
|
|
do
|
|
./SogLoader --id=0.${FRAMESYNC_ID}.$i --cluster=${CFG_PATH}/cluster.json --name=FrameSync $@
|
|
done
|
|
|
|
if [ "$1" = "stop" ] ; then
|
|
wait_to_stop_svr FrameSync $FRAMESYNC_ID 1
|
|
fi
|
|
|
|
|
|
|
|
|