Usage of stdint.h types
[anna.git] / example / diameter / launcher / DEPLOY.sh
index 80c9f96..d593fdc 100755 (executable)
@@ -55,10 +55,10 @@ EXE=$exe
 STARTED=\`pgrep \$EXE 2>/dev/null\`
 [ \$? -eq 0 ] && { echo "Already started!"; echo "\$STARTED" ; exit 1 ; }
 ./pre-start.sh
-0> launcher.traces
+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
   ;;
 
   *)