Add deployment for ADML agent with http interface
[anna.git] / example / diameter / launcher / deployments / aots / agents / ADML / start.sh
diff --git a/example/diameter/launcher/deployments/aots/agents/ADML/start.sh b/example/diameter/launcher/deployments/aots/agents/ADML/start.sh
deleted file mode 100755 (executable)
index 213a8e0..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-# $1: args type could be 'ft' (function test) or 'st' (system test). By default: ft
-function pgrep_live {
-  pids=$(pgrep "$1");
-  [ "$pids" ] || return;
-  ps -o s= -o pid= $pids | sed -n 's/^[^ZT][[:space:]]\+//p';
-}
-cd `dirname $0`
-ARGS=args.$1
-[ -z "$1" ] && ARGS=args.ft
-STARTED=`pgrep_live ADML`
-[ -n "$STARTED"  ] && { echo "Already started !"; echo "PID $STARTED" ; exit 1 ; }
-0> launcher.trace
-for file in `ls *.launcher.log 2>/dev/null`; do 0> $file; done
-mkdir -p counters test-reports
-rm -f counters/* test-reports/* *.csv
-export LD_LIBRARY_PATH=$PWD/dynlibs
-./ADML `grep -v ^# $ARGS` &
-echo $! > .pid
-echo "Done !"
-