blob: 59848f69cc302b1d94780cc43ec06df24a5af6a3 [file] [log] [blame]
prithiv063fe7c2017-09-29 11:24:41 +01001#!/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
28import os
29import subprocess
30import urllib
31packages = ['default-jre', 'python-all']
32for package in packages:
33 subprocess.call(['apt-get', 'install', '--yes', package])
Helena McGough828ff572017-12-11 09:06:16 +000034urllib.urlretrieve("http://www-eu.apache.org/dist/kafka/0.11.0.2/kafka_2.11-0.11.0.2.tgz", filename="kafka.tgz")
prithiv063fe7c2017-09-29 11:24:41 +010035os.popen("mkdir /opt/kafka && tar -xf /root/kafka.tgz -C /opt/kafka --strip-components 1")
36os.popen("sed -i 's|zookeeper.connect=localhost:2181|zookeeper.connect=SO-ub.lxd:2181 |g' /opt/kafka/config/server.properties")
37os.popen("/opt/kafka/bin/kafka-server-start.sh kafka/config/server.properties &")