blob: e21a6ba12ecdfb02b8b8570611f4c073657f6a2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#/bin/bash
if [ ! "$#" -eq 1 ]
then
echo "Usage: ./update_running_streams.sh [number of active streams]"
exit
fi
STREAMS=$1
BODY=""
for((i=1; $i<= $STREAMS; i++)); do
BODY+="{\"id\":\"ipsec_udp$i\", \"is-enabled\":\"true\"},"
done
BODY='{"pg-streams":{"pg-stream": ['${BODY%?}']}}'
curl -X PUT -H "Authorization: Basic YWRtaW46YWRtaW4=" -H "Content-Type: application/json" -H "Cache-Control: no-cache" -H "Postman-Token: 9005870c-900b-2e2e-0902-ef2009bb0ff7" -d "$BODY" "http://localhost:8183/restconf/config/sample-plugin:sample-plugin/pg-streams"
|