abde2d136455b2e8685ff69214dff530c840d059
[barometer.git] / docker / barometer-kafka / start_kafka.sh
1 #!/bin/bash
2 # Copyright 2017 OPNFV
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 if [ -n "$broker_id" ]
17 then
18   sed -i "s/broker.id=0/broker.id=$broker_id/" \
19   kafka_2.11-1.0.0/config/server.properties
20 fi
21 if [ -n "$zookeeper_node" ]
22 then
23   sed -i "s/localhost:2181/$zookeeper_node:2181/" \
24   kafka_2.11-1.0.0/config/server.properties
25 fi
26
27 kafka_2.11-1.0.0/bin/kafka-server-start.sh kafka_2.11-1.0.0/config/server.properties > kafka_2.11-1.0.0/kafka.log 2>&1