+x to scripts
[osm/MON.git] / scripts / install_mon.sh
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 limitation
20
21 # under the License.
22
23 # For those usages not covered by the Apache License, Version 2.0 please
24 # contact: prithiv.mohan@intel.com or adrian.hoban@intel.com
25
26 #__author__ = "Prithiv Mohan"
27 #__date__ = "13/Oct/2017"
28
29 #This is a temporary installation script for the MON Module. From the next
30 #point release, MON will be a part of the OSM Module and can be installed
31 #through the install_osm.sh script, just like any other modules.
32
33 lxc launch ubuntu:16.04 MON
34 lxc exec MON -- apt-get --yes update
35 lxc exec MON -- apt-get --yes install git python python-pip libmysqlclient-dev
36 lxc exec MON -- git clone https://osm.etsi.org/gerrit/osm/MON.git
37 lxc exec MON -- pip install -r /root/MON/requirements.txt
38 lxc exec MON -- python /root/MON/kafkad
39 lxc exec MON -- . /root/MON/scripts/kafka.sh
40 lxc exec MON -- . /root/MON/plugins/vRealiseOps/vROPs_Webservice/install.sh