Policy Module first commit
[osm/MON.git] / kafkad
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 # Copyright 2017 Intel Research and Development Ireland Limited
5 # *************************************************************
6
7 # This file is part of OSM Monitoring module
8 # All Rights Reserved to Intel Corporation
9
10 # Licensed under the Apache License, Version 2.0 (the "License"); you may
11 # not use this file except in compliance with the License. You may obtain
12 # a copy of the License at
13
14 #         http://www.apache.org/licenses/LICENSE-2.0
15
16 # Unless required by applicable law or agreed to in writing, software
17 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
19 # License for the specific language governing permissions and limitations
20 # under the License.
21
22 # For those usages not covered by the Apache License, Version 2.0 please
23 # contact: prithiv.mohan@intel.com or adrian.hoban@intel.com
24
25 #__author__ = "Prithiv Mohan"
26 #__date__   = "25/Sep/2017"
27
28 import os
29 import subprocess
30 import urllib
31 packages = ['default-jre', 'python-all']
32 for package in packages:
33     subprocess.call(['apt-get', 'install', '--yes', package])
34 urllib.urlretrieve("http://www-eu.apache.org/dist/kafka/0.11.0.2/kafka_2.11-0.11.0.2.tgz", filename="kafka.tgz")
35 os.popen("mkdir /opt/kafka && tar -xf /root/kafka.tgz -C /opt/kafka --strip-components 1")
36 os.popen("sed -i 's|zookeeper.connect=localhost:2181|zookeeper.connect=SO-ub.lxd:2181 |g' /opt/kafka/config/server.properties")
37 os.popen("/opt/kafka/bin/kafka-server-start.sh kafka/config/server.properties &")