X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=example%2Fdiameter%2Flauncher%2FDEPLOY.sh;h=d593fdc6d5faa8ed7c4251ce19e62a8c7b168839;hb=706c5ba5c35199816446453e6e144200cf79265b;hp=034ccf91570f9bc58196a17b18f6750298802209;hpb=36bb910c8e4ad26ab0b2c9618abc02c255b24e58;p=anna.git diff --git a/example/diameter/launcher/DEPLOY.sh b/example/diameter/launcher/DEPLOY.sh index 034ccf9..d593fdc 100755 --- a/example/diameter/launcher/DEPLOY.sh +++ b/example/diameter/launcher/DEPLOY.sh @@ -58,7 +58,7 @@ STARTED=\`pgrep \$EXE 2>/dev/null\` 0> launcher.trace rm -f counters/* # Execution line: -./\$EXE -cntDir counters $(for i in `cat args.txt | grep -v "^#"`; do echo -n "$i "; done)& +./\$EXE --cntDir counters $(for i in `cat args.txt | grep -v "^#"`; do echo -n "$i "; done)& echo \$! > .pid EOF @@ -118,7 +118,7 @@ then echo echo " (a)dvanced version: includes burst management script and templates for different scenarios. Automatic configuration during start." echo " (b)asic version: 4 types of launcher (client, server, balancer, dummy), lightly configured and managed through SIGURS2 method." - echo " (f)unction test client: special client with regexp scheduler script based on splitted traffic logs." + echo " (f)unction test client: special client with regexp scheduler script based on splitted traffic logs. Requires a server to perform the tests." echo echo "Input option [b]:" read option @@ -131,19 +131,19 @@ case $option in a) echo "Advanced deployment" DEPLOYMENTS_DIR=deployments/advanced - DPATH_dflt=$HOME/ADL-advanced + DPATH_dflt=$HOME/ADL/advanced ;; b) echo "Basic deployment" DEPLOYMENTS_DIR=deployments/basic - DPATH_dflt=$HOME/ADL-basic + DPATH_dflt=$HOME/ADL/basic ;; f) echo "FT deployment" DEPLOYMENTS_DIR=deployments/ft-client - DPATH_dflt=$HOME/ADL-ft-client + DPATH_dflt=$HOME/ADL/ft-client ;; *)