X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=example%2Fdiameter%2Flauncher%2Fdeployments%2Fst-client%2Frun_all.sh;h=58a68bf85b71a5c3f9bd7a127f4737f8d4f7da32;hb=43e1ef25edd9bd4d3de10f24ffc6a8381b3f1f73;hp=8f2cd56716ea8b0e94477e81415f67758e7c31b8;hpb=daeeaacceeccefcac46838f460b19409cc5c4cb4;p=anna.git diff --git a/example/diameter/launcher/deployments/st-client/run_all.sh b/example/diameter/launcher/deployments/st-client/run_all.sh index 8f2cd56..58a68bf 100755 --- a/example/diameter/launcher/deployments/st-client/run_all.sh +++ b/example/diameter/launcher/deployments/st-client/run_all.sh @@ -1,6 +1,49 @@ #!/bin/bash +target=$1 +[ -z "$target" ] && target=ADMLS + cd `dirname $0` -for run in `ls ADMLS/*/run.sh` +if [ ! -d $target ] +then + echo + echo "Directory '$target' missing. Run './configure.sh' first !" + echo "(remember that you could provide another target as argument)" + echo + exit 1 +fi + +for run in `ls $target/*/run.sh` do - $run + cd `dirname $run` + instance_name=$(basename $PWD) + pkill -9 $instance_name + [ $? -eq 0 ] && echo -n "Re-" + echo "Starting $instance_name ..." + ./run.sh > /dev/null & + cd - >/dev/null done +echo +wait $(jobs -p) + +sleep 3 +./checkStatus.sh + +cat << EOF + + + + To stop the processes, you could execute: pgrep ADML-[0-9] | xargs kill + Anyway, executing './run.sh' again you will restart the ADML instances. + + Now it's time to './program.sh' the started instances with the desired + scenary. There are two programming variants: + + ./program.sh + ./program.sh dynamic + + + Done! +EOF + +echo +