Increase timeout for member stop
[integration/test.git] / csit / scripts / set_elasticsearch_attribute_short.sh
1 #!/bin/bash
2
3 cat > ${WORKSPACE}/org.apache.karaf.decanter.scheduler.simple.cfg <<EOF
4 period=5000
5
6 EOF
7
8 echo "Copying config files to ODL Controller folder"
9
10 for i in `seq 1 ${NUM_ODL_SYSTEM}`
11 do
12         CONTROLLERIP=ODL_SYSTEM_${i}_IP
13         echo "Setup long duration config to ${!CONTROLLERIP}"
14         ssh ${!CONTROLLERIP} "mkdir -p /tmp/${BUNDLEFOLDER}/etc/opendaylight/karaf/"
15         scp ${WORKSPACE}/org.apache.karaf.decanter.scheduler.simple.cfg ${!CONTROLLERIP}:/tmp/${BUNDLEFOLDER}/etc/
16 done