X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=example%2Fdiameter%2Flauncher%2Fdeployments%2Fst-client%2Foperation_all.sh;h=1d0628f3258b38e4d0c3dcd08b990d8f2c349082;hb=43e1ef25edd9bd4d3de10f24ffc6a8381b3f1f73;hp=616814d480642f86d6aad885bf91d529b1e6e508;hpb=18319deabbc8563fc112795968372e96263e6fe4;p=anna.git diff --git a/example/diameter/launcher/deployments/st-client/operation_all.sh b/example/diameter/launcher/deployments/st-client/operation_all.sh index 616814d..1d0628f 100755 --- a/example/diameter/launcher/deployments/st-client/operation_all.sh +++ b/example/diameter/launcher/deployments/st-client/operation_all.sh @@ -10,8 +10,15 @@ fi for op in `ls ADMLS/*/operation.sh` do - cd `dirname $op` - ./operation.sh $@ + dn_op=`dirname $op` + cd $dn_op + echo -n "Instance `basename $dn_op`: " + 0>launcher.trace + ./operation.sh $@ & + #[ $? -ne 0 ] && { echo ; exit 1 ; } cd - >/dev/null done +echo +exit 0 +