75c1a419aa40f2221b746c03ffb4af220a8325d1
[integration/csit.git] / scripts / dmaap-buscontroller / init-mock-mrc.sh
1 #!/bin/bash
2
3 # $1 is the IP address of the MRC (MR Central) mock server
4
5 curl -v -X PUT -d @- http://$1:1080/expectation << EOF
6 {
7         "httpRequest": {
8                 "method": "GET",
9                 "path": "/hello"
10         },
11         "httpResponse": {
12                 "body": "Hello world!",
13                 "statusCode": 200
14         }
15 }
16 EOF
17