summaryrefslogtreecommitdiffstats
path: root/dbc-client/misc
diff options
context:
space:
mode:
authordglFromAtt <dgl@research.att.com>2019-03-01 21:18:54 +0000
committerdglFromAtt <dgl@research.att.com>2019-03-01 21:19:00 +0000
commit80f10c41049ea22e914d4a17652abc1d3b502006 (patch)
treed45442d1336d5e9c4baed29307c76478f09a0a62 /dbc-client/misc
parent90a7fbb9a31c13514b05c9032d132a6be40e65c7 (diff)
Add env vars to script
Change-Id: I5484f88f0a624fa0d0ba430b13b71f8c4b0ee346 Signed-off-by: dglFromAtt <dgl@research.att.com> Issue-ID: DMAAP-1046
Diffstat (limited to 'dbc-client/misc')
-rw-r--r--dbc-client/misc/dbc-client15
1 files changed, 12 insertions, 3 deletions
diff --git a/dbc-client/misc/dbc-client b/dbc-client/misc/dbc-client
index 42e7282..a812460 100644
--- a/dbc-client/misc/dbc-client
+++ b/dbc-client/misc/dbc-client
@@ -31,6 +31,7 @@ PATH=/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin
export PATH
CONFIGMAP_ROOT=${CONFIGMAP_ROOT:-/opt/app/config}
CONTAINER_CONFIG=$CONFIGMAP_ROOT/conf/dbc-client.env
+REQUESTID=${REQUESTID:-dbc-client}
@@ -85,7 +86,7 @@ init() {
while [ $rc != "200" ]
do
sleep 10
- rc=`curl -s -o /dev/null -I -w "%{http_code}" -X GET -H "Content-Type: application/json" http://dmaap-bc:8080/webapi/dmaap`
+ rc=`curl -s -o /dev/null -I -w "%{http_code}" -X GET -H "X-ECOMP-RequestID: $REQUESTID" -H "Content-Type: application/json" http://dmaap-bc:8080/webapi/dmaap`
echo "get dmaap response=${rc}"
done
}
@@ -94,21 +95,29 @@ doprov() {
cd $CONFIGMAP_ROOT
pwd
# order is important in this next list
- for uri in dmaap dcaeLocations mr_clusters topics feeds mr_clients dr_pubs dr_subs
+ for uri in dmaap dcaeLocations mr_clusters topics mr_clients dr_nodes feeds dr_pubs dr_subs
do
if [ -d ${uri} ]
then
for j in `ls ${uri}/*.json`
do
echo "POST $j to $uri"
- rc=`curl -v -X POST -w "%{http_code}" -H "Content-Type: application/json" -d @${j} http://dmaap-bc:8080/webapi/${uri}`
+ rc=`curl -v -X POST -w "%{http_code}" -H "X-ECOMP-RequestID: $REQUESTID" -H "Content-Type: application/json" -d @${j} http://dmaap-bc:8080/webapi/${uri}`
echo "response=$rc"
done
fi
done
}
+delay() {
+ echo "DELAY=$DELAY"
+ if [ ! -z "$DELAY" ]
+ then
+ sleep $DELAY
+ fi
+}
set -x
+delay
config
init
doprov