X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=example%2Fdiameter%2Flauncher%2Fdeployments%2Fst-client%2Foperation_all.sh;fp=example%2Fdiameter%2Flauncher%2Fdeployments%2Fst-client%2Foperation_all.sh;h=616814d480642f86d6aad885bf91d529b1e6e508;hb=18319deabbc8563fc112795968372e96263e6fe4;hp=0000000000000000000000000000000000000000;hpb=fca0f585780127dba2564de6741d2de9a5e59fb4;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 new file mode 100755 index 0000000..616814d --- /dev/null +++ b/example/diameter/launcher/deployments/st-client/operation_all.sh @@ -0,0 +1,17 @@ +#!/bin/bash +cd `dirname $0` +if [ ! -d "ADMLS" ] +then + echo + echo "Run './configure.sh' first !" + echo + exit 1 +fi + +for op in `ls ADMLS/*/operation.sh` +do + cd `dirname $op` + ./operation.sh $@ + cd - >/dev/null +done +