diff options
author | Lusheng Ji <lji@research.att.com> | 2018-09-19 00:25:34 -0400 |
---|---|---|
committer | Lusheng Ji <lji@research.att.com> | 2018-09-19 00:25:44 -0400 |
commit | 20fdd615eeb9b4fa1594273b1fa3d7eca8992c8b (patch) | |
tree | 6383150a58cd7fbc6f5b099641236a24a784a5e6 /heat/register.sh | |
parent | c13c3320b6debef26a593eb22c56cc92995c20b3 (diff) |
Fix missing double quote
Issue-ID: DCAEGEN2-772
Change-Id: I5b03c253d1b1d2893a12e78a6c545155dfbcf9ab
Signed-off-by: Lusheng Ji <lji@research.att.com>
Diffstat (limited to 'heat/register.sh')
-rwxr-xr-x | heat/register.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/heat/register.sh b/heat/register.sh index 8acf881..6bd7b7b 100755 --- a/heat/register.sh +++ b/heat/register.sh @@ -438,7 +438,7 @@ curl -v -X PUT -H "Content-Type: application/json" \ # SNMP Trap Collector -SERVICENAME="${SRVCNAME_STATIC_SNMPTRAP} +SERVICENAME="${SRVCNAME_STATIC_SNMPTRAP}" REGKV='{ "files": { "roll_frequency": "day", @@ -498,7 +498,7 @@ curl -v -X PUT -H "Content-Type: application/json" \ # hv-ves collector -SERVICENAME="${SRVCNAME_STATIC_HVVES} +SERVICENAME="${SRVCNAME_STATIC_HVVES}" REGKV='{ "dmaap.kafkaBootstrapServers": "{{ mr_ip_addr }}:9092", "collector.routing": { @@ -512,7 +512,7 @@ curl -v -X PUT -H "Content-Type: application/json" \ # data file collector -SERVICENAME="${SRVCNAME_STATIC_DF} +SERVICENAME="${SRVCNAME_STATIC_DF}" REGKV='{ }' curl -v -X PUT -H "Content-Type: application/json" \ @@ -521,7 +521,7 @@ curl -v -X PUT -H "Content-Type: application/json" \ # PNF Registration Handler -SERVICENAME="${SRVCNAME_STATIC_PRH} +SERVICENAME="${SRVCNAME_STATIC_PRH}" REGKV='{ "dmaap.dmaapProducerConfiguration.dmaapTopicName": "/events/unauthenticated.PNF_READY", "dmaap.dmaapConsumerConfiguration.dmaapHostName": "{{ mr_ip_addr }}", |