blob: 0f6e5a8f201952112b9da20b8821a44967652c7a [file] [log] [blame]
garciadeblase5ef5172017-04-20 14:46:29 +02001#!/bin/bash
2
3##
4# Licensed under the Apache License, Version 2.0 (the "License"); you may
5# not use this file except in compliance with the License. You may obtain
6# 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, WITHOUT
12# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13# License for the specific language governing permissions and limitations
14# under the License.
15#
16# For those usages not covered by the Apache License, Version 2.0 please
17# contact with: OSM_TECH@list.etsi.org
18##
19
20echo "POST INSTALL OSM-RO"
21OSMRO_PATH=`python -c 'import osm_ro; print osm_ro.__path__[0]'`
22#OSMLIBOVIM_PATH=`python -c 'import lib_osm_openvim; print lib_osm_openvim.__path__[0]'`
23
24#Pip packages required for vmware connector
tierno6082b7d2018-08-31 11:24:08 +000025pip2 install pip==9.0.3
26pip2 install --upgrade pyvcloud==19.1.1
27pip2 install --upgrade progressbar
28pip2 install --upgrade prettytable
29pip2 install --upgrade pyvmomi
30pip2 install --upgrade pyang pyangbind
31pip2 install untangle
jomacarpe20c13232019-06-12 21:20:51 +000032pip2 install pyone
tierno6082b7d2018-08-31 11:24:08 +000033pip2 install -e git+https://github.com/python-oca/python-oca#egg=oca
tierno8dc9c8b2019-04-30 12:20:38 +000034pip2 install azure
garciadeblase5ef5172017-04-20 14:46:29 +020035
baldoni10757152019-03-27 10:46:08 +010036# Packages required for fos connector
37pip2 install fog05rest
38
39
garciadeblase5ef5172017-04-20 14:46:29 +020040systemctl enable osm-ro.service
41
42#Creation of log folder
43mkdir -p /var/log/osm
44
45#configure arg-autocomplete for this user
46su $SUDO_USER -c 'activate-global-python-argcomplete --user'
47if ! su $SUDO_USER -c 'grep -q bash_completion.d/python-argcomplete.sh ${HOME}/.bashrc'
48then
49 echo " inserting .bash_completion.d/python-argcomplete.sh execution at .bashrc"
50 su $SUDO_USER -c 'echo ". ${HOME}/.bash_completion.d/python-argcomplete.sh" >> ~/.bashrc'
51fi
52
53echo '
garciadeblas1c385a32017-04-20 19:06:04 +020054To make OSM RO work, you have to install mysql and a database, and finally start osm-ro service'
garciadeblas4b6216b2017-04-20 16:41:52 +020055echo " ${OSMRO_PATH}/database_utils/install-db-server.sh # -h for help"
garciadeblas1c385a32017-04-20 19:06:04 +020056echo ' service osm-ro start'
garciadeblase5ef5172017-04-20 14:46:29 +020057
58