blob: 733a82ae9c8827861386542f5aef57cf474d6f5b [file] [log] [blame]
garciadeblas16304ba2016-05-11 14:47:39 +02001#!/bin/bash
2
3##
4# Copyright 2015 Telefónica Investigación y Desarrollo, S.A.U.
5# This file is part of openmano
6# All Rights Reserved.
7#
8# Licensed under the Apache License, Version 2.0 (the "License"); you may
9# not use this file except in compliance with the License. You may obtain
10# a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
17# License for the specific language governing permissions and limitations
18# under the License.
19#
20# For those usages not covered by the Apache License, Version 2.0 please
21# contact with: nfvlabs@tid.es
22##
23
tierno76841842016-09-27 09:18:28 +000024#ONLY TESTED in Ubuntu 16.04 partially tested in Ubuntu 14.10 14.04 16.04, CentOS7 and RHEL7
garciadeblas16304ba2016-05-11 14:47:39 +020025#Get needed packages, source code and configure to run openmano
26#Ask for database user and password if not provided
garciadeblas16304ba2016-05-11 14:47:39 +020027
28function usage(){
tiernoc50e5da2016-07-06 17:49:45 +020029 echo -e "usage: sudo $0 [OPTIONS]"
tierno45a52852016-08-26 14:39:42 +020030 echo -e "Install last stable source code in ./openmano and the needed packages"
31 echo -e "On a Ubuntu 16.04 it configures openmano as a service"
tiernoc50e5da2016-07-06 17:49:45 +020032 echo -e " OPTIONS"
tierno45a52852016-08-26 14:39:42 +020033 echo -e " -u USER: database admin user. 'root' by default. Prompts if needed"
34 echo -e " -p PASS: database admin password to be used or installed. Prompts if needed"
garciadeblas89b3d842016-09-19 15:18:33 +020035 echo -e " -q --quiet: install in unattended mode"
tierno45a52852016-08-26 14:39:42 +020036 echo -e " -h --help: show this help"
37 echo -e " --develop: install last version for developers, and do not configure as a service"
tierno26777652016-11-15 17:33:13 +000038 echo -e " --forcedb: reinstall mano_db DB, deleting previous database if exists and creating a new one"
tierno443c84a2017-04-24 12:31:33 +020039 echo -e " --updatedb: do not reinstall mano_db DB if exist, just update database"
40 echo -e " --force: makes idenpotent, delete previous installations folders if needed. It assumes --updatedb if --forcedb option is not provided"
garciadeblas89b3d842016-09-19 15:18:33 +020041 echo -e " --noclone: assumes that openmano was cloned previously and that this script is run from the local repo"
tierno76841842016-09-27 09:18:28 +000042 echo -e " --no-install-packages: use this option to skip updating and installing the requires packages. This avoid wasting time if you are sure requires packages are present e.g. because of a previous installation"
garciadeblas5b1a6642017-04-18 10:10:31 +020043 echo -e " --no-db: do not install mysql server"
garciadeblas16304ba2016-05-11 14:47:39 +020044}
45
46function install_packages(){
47 [ -x /usr/bin/apt-get ] && apt-get install -y $*
tiernoc50e5da2016-07-06 17:49:45 +020048 [ -x /usr/bin/yum ] && yum install -y $*
garciadeblas16304ba2016-05-11 14:47:39 +020049
50 #check properly installed
51 for PACKAGE in $*
52 do
53 PACKAGE_INSTALLED="no"
54 [ -x /usr/bin/apt-get ] && dpkg -l $PACKAGE &>> /dev/null && PACKAGE_INSTALLED="yes"
55 [ -x /usr/bin/yum ] && yum list installed $PACKAGE &>> /dev/null && PACKAGE_INSTALLED="yes"
56 if [ "$PACKAGE_INSTALLED" = "no" ]
57 then
tiernoc50e5da2016-07-06 17:49:45 +020058 echo "failed to install package '$PACKAGE'. Revise network connectivity and try again" >&2
garciadeblas89b3d842016-09-19 15:18:33 +020059 exit 1
garciadeblas16304ba2016-05-11 14:47:39 +020060 fi
61 done
62}
63
tierno45a52852016-08-26 14:39:42 +020064GIT_URL=https://osm.etsi.org/gerrit/osm/RO.git
garciadeblasc53ebfa2017-03-31 16:02:13 +020065GIT_OVIM_URL=https://osm.etsi.org/gerrit/osm/openvim.git
tiernoc50e5da2016-07-06 17:49:45 +020066DBUSER="root"
67DBPASSWD=""
68DBPASSWD_PARAM=""
69QUIET_MODE=""
tierno45a52852016-08-26 14:39:42 +020070DEVELOP=""
tierno443c84a2017-04-24 12:31:33 +020071DB_FORCE_UPDATE=""
72UPDATEDB=""
tierno26777652016-11-15 17:33:13 +000073FORCE=""
garciadeblas89b3d842016-09-19 15:18:33 +020074NOCLONE=""
tierno76841842016-09-27 09:18:28 +000075NO_PACKAGES=""
Gennadiy Dubina89cb0d12017-04-03 15:46:41 +030076NO_DB=""
tiernoc50e5da2016-07-06 17:49:45 +020077while getopts ":u:p:hiq-:" o; do
78 case "${o}" in
79 u)
80 export DBUSER="$OPTARG"
81 ;;
82 p)
83 export DBPASSWD="$OPTARG"
84 export DBPASSWD_PARAM="-p$OPTARG"
85 ;;
86 q)
87 export QUIET_MODE=yes
88 export DEBIAN_FRONTEND=noninteractive
89 ;;
90 h)
91 usage && exit 0
92 ;;
93 -)
94 [ "${OPTARG}" == "help" ] && usage && exit 0
tierno45a52852016-08-26 14:39:42 +020095 [ "${OPTARG}" == "develop" ] && DEVELOP="y" && continue
tierno443c84a2017-04-24 12:31:33 +020096 [ "${OPTARG}" == "forcedb" ] && DB_FORCE_UPDATE="${DB_FORCE_UPDATE}--forcedb" && continue
97 [ "${OPTARG}" == "updatedb" ] && DB_FORCE_UPDATE="${DB_FORCE_UPDATE}--updatedb" && continue
98 [ "${OPTARG}" == "force" ] && FORCE="y" && continue
garciadeblas89b3d842016-09-19 15:18:33 +020099 [ "${OPTARG}" == "noclone" ] && NOCLONE="y" && continue
tierno45a52852016-08-26 14:39:42 +0200100 [ "${OPTARG}" == "quiet" ] && export QUIET_MODE=yes && export DEBIAN_FRONTEND=noninteractive && continue
tierno76841842016-09-27 09:18:28 +0000101 [ "${OPTARG}" == "no-install-packages" ] && export NO_PACKAGES=yes && continue
Gennadiy Dubina89cb0d12017-04-03 15:46:41 +0300102 [ "${OPTARG}" == "no-db" ] && NO_DB="y" && continue
tiernoc50e5da2016-07-06 17:49:45 +0200103 echo -e "Invalid option: '--$OPTARG'\nTry $0 --help for more information" >&2
104 exit 1
105 ;;
106 \?)
107 echo -e "Invalid option: '-$OPTARG'\nTry $0 --help for more information" >&2
108 exit 1
109 ;;
110 :)
111 echo -e "Option '-$OPTARG' requires an argument\nTry $0 --help for more information" >&2
112 exit 1
113 ;;
114 *)
115 usage >&2
garciadeblas89b3d842016-09-19 15:18:33 +0200116 exit 1
tiernoc50e5da2016-07-06 17:49:45 +0200117 ;;
118 esac
119done
garciadeblas16304ba2016-05-11 14:47:39 +0200120
tierno443c84a2017-04-24 12:31:33 +0200121if [ "$DB_FORCE_UPDATE" == "--forcedb--updatedb" ] || [ "$DB_FORCE_UPDATE" == "--updatedb--forcedb" ] ; then
122 echo "Error: options --forcedb and --updatedb are mutually exclusive" >&2
123 exit 1
124elif [ -n "$FORCE" ] && [ -z "$DB_FORCE_UPDATE" ] ; then
125 DB_FORCE_UPDATE="--updatedb"
126fi
127
tiernoc50e5da2016-07-06 17:49:45 +0200128#check root privileges and non a root user behind
garciadeblas89b3d842016-09-19 15:18:33 +0200129[ "$USER" != "root" ] && echo "Needed root privileges" >&2 && exit 1
tiernoc50e5da2016-07-06 17:49:45 +0200130if [[ -z "$SUDO_USER" ]] || [[ "$SUDO_USER" = "root" ]]
131then
132 [[ -z $QUIET_MODE ]] && read -e -p "Install in the root user (y/N)?" KK
133 [[ -z $QUIET_MODE ]] && [[ "$KK" != "y" ]] && [[ "$KK" != "yes" ]] && echo "Cancelled" && exit 1
134 export SUDO_USER=root
135fi
garciadeblas16304ba2016-05-11 14:47:39 +0200136
137#Discover Linux distribution
138#try redhat type
139[ -f /etc/redhat-release ] && _DISTRO=$(cat /etc/redhat-release 2>/dev/null | cut -d" " -f1)
garciadeblasaa1044b2017-04-21 07:12:17 +0200140#else assuming ubuntu type
garciadeblas16304ba2016-05-11 14:47:39 +0200141[ -f /etc/redhat-release ] || _DISTRO=$(lsb_release -is 2>/dev/null)
142if [ "$_DISTRO" == "Ubuntu" ]
143then
tierno45a52852016-08-26 14:39:42 +0200144 _RELEASE=$(lsb_release -rs)
145 if [[ ${_RELEASE%%.*} != 14 ]] && [[ ${_RELEASE%%.*} != 16 ]]
garciadeblas16304ba2016-05-11 14:47:39 +0200146 then
tierno45a52852016-08-26 14:39:42 +0200147 [[ -z $QUIET_MODE ]] && read -e -p "WARNING! Not tested Ubuntu version. Continue assuming a trusty (14.XX)'? (y/N)" KK
tiernoc50e5da2016-07-06 17:49:45 +0200148 [[ -z $QUIET_MODE ]] && [[ "$KK" != "y" ]] && [[ "$KK" != "yes" ]] && echo "Cancelled" && exit 1
tierno45a52852016-08-26 14:39:42 +0200149 _RELEASE = 14
garciadeblas16304ba2016-05-11 14:47:39 +0200150 fi
151elif [ "$_DISTRO" == "CentOS" ]
152then
153 _RELEASE="7"
154 if ! cat /etc/redhat-release | grep -q "7."
155 then
tiernoc50e5da2016-07-06 17:49:45 +0200156 [[ -z $QUIET_MODE ]] && read -e -p "WARNING! Not tested CentOS version. Continue assuming a '_RELEASE' type? (y/N)" KK
157 [[ -z $QUIET_MODE ]] && [[ "$KK" != "y" ]] && [[ "$KK" != "yes" ]] && echo "Cancelled" && exit 1
garciadeblas16304ba2016-05-11 14:47:39 +0200158 fi
159elif [ "$_DISTRO" == "Red" ]
160then
161 _RELEASE="7"
162 if ! cat /etc/redhat-release | grep -q "7."
163 then
tiernoc50e5da2016-07-06 17:49:45 +0200164 [[ -z $QUIET_MODE ]] && read -e -p "WARNING! Not tested Red Hat OS version. Continue assuming a '_RELEASE' type? (y/N)" KK
165 [[ -z $QUIET_MODE ]] && [[ "$KK" != "y" ]] && [[ "$KK" != "yes" ]] && echo "Cancelled" && exit 1
garciadeblas16304ba2016-05-11 14:47:39 +0200166 fi
167else #[ "$_DISTRO" != "Ubuntu" -a "$_DISTRO" != "CentOS" -a "$_DISTRO" != "Red" ]
168 _DISTRO_DISCOVER=$_DISTRO
169 [ -x /usr/bin/apt-get ] && _DISTRO="Ubuntu" && _RELEASE="14"
170 [ -x /usr/bin/yum ] && _DISTRO="CentOS" && _RELEASE="7"
tiernoc50e5da2016-07-06 17:49:45 +0200171 [[ -z $QUIET_MODE ]] && read -e -p "WARNING! Not tested Linux distribution '$_DISTRO_DISCOVER '. Continue assuming a '$_DISTRO $_RELEASE' type? (y/N)" KK
172 [[ -z $QUIET_MODE ]] && [[ "$KK" != "y" ]] && [[ "$KK" != "yes" ]] && echo "Cancelled" && exit 1
garciadeblas16304ba2016-05-11 14:47:39 +0200173fi
174
tierno26777652016-11-15 17:33:13 +0000175#check if installed as a service
176INSTALL_AS_A_SERVICE=""
177[[ "$_DISTRO" == "Ubuntu" ]] && [[ ${_RELEASE%%.*} == 16 ]] && [[ -z $DEVELOP ]] && INSTALL_AS_A_SERVICE="y"
178#Next operations require knowing OPENMANO_BASEFOLDER
179if [[ -z "$NOCLONE" ]]; then
tiernoaa5832d2016-12-07 16:20:25 +0100180 if [[ -n "$INSTALL_AS_A_SERVICE" ]] ; then
181 OPENMANO_BASEFOLDER=__openmano__${RANDOM}
182 else
183 OPENMANO_BASEFOLDER="${PWD}/openmano"
184 fi
185 [[ -n "$FORCE" ]] && rm -rf $OPENMANO_BASEFOLDER #make idempotent
tierno26777652016-11-15 17:33:13 +0000186else
187 HERE=$(realpath $(dirname $0))
188 OPENMANO_BASEFOLDER=$(dirname $HERE)
189fi
garciadeblas16304ba2016-05-11 14:47:39 +0200190
garciadeblasaa1044b2017-04-21 07:12:17 +0200191if [[ -z "$NO_PACKAGES" ]] #if (UPDATE REPOS)
tierno76841842016-09-27 09:18:28 +0000192then
garciadeblas16304ba2016-05-11 14:47:39 +0200193echo '
194#################################################################
195##### UPDATE REPOSITORIES #####
196#################################################################'
197[ "$_DISTRO" == "Ubuntu" ] && apt-get update -y
198
199[ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && yum check-update -y
200[ "$_DISTRO" == "CentOS" ] && sudo yum install -y epel-release
201[ "$_DISTRO" == "Red" ] && wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm \
202 && sudo rpm -ivh epel-release-7-5.noarch.rpm && sudo yum install -y epel-release && rm -f epel-release-7-5.noarch.rpm
203[ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && sudo yum repolist
204
garciadeblasaa1044b2017-04-21 07:12:17 +0200205fi #if (UPDATE REPOS)
garciadeblas16304ba2016-05-11 14:47:39 +0200206
garciadeblasaa1044b2017-04-21 07:12:17 +0200207if [[ -z "$NO_PACKAGES" ]] #if (INSTALL DEPENDENCIES)
tierno76841842016-09-27 09:18:28 +0000208then
garciadeblas16304ba2016-05-11 14:47:39 +0200209echo '
210#################################################################
211##### INSTALL REQUIRED PACKAGES #####
212#################################################################'
tierno05a8b7b2017-04-20 18:56:07 +0200213[ "$_DISTRO" == "Ubuntu" ] && install_packages "git make screen wget mysql-client"
214[ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && install_packages "git make screen wget mariadb-client"
garciadeblasaa1044b2017-04-21 07:12:17 +0200215fi #if (INSTALL DEPENDENCIES)
garciadeblas16304ba2016-05-11 14:47:39 +0200216
garciadeblasaa1044b2017-04-21 07:12:17 +0200217if [[ -z "$NO_PACKAGES" ]] #if (PYTHON PACKAGES AND PIP PACKAGES)
tierno76841842016-09-27 09:18:28 +0000218then
garciadeblas16304ba2016-05-11 14:47:39 +0200219echo '
220#################################################################
221##### INSTALL PYTHON PACKAGES #####
222#################################################################'
bayramovfe3f3c92016-10-04 07:53:41 +0400223[ "$_DISTRO" == "Ubuntu" ] && install_packages "python-yaml python-bottle python-mysqldb python-jsonschema python-paramiko python-argcomplete python-requests python-logutils libxml2-dev libxslt-dev python-dev python-pip"
224[ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && install_packages "PyYAML MySQL-python python-jsonschema python-paramiko python-argcomplete python-requests python-logutils libxslt-devel libxml2-devel python-devel python-pip"
tiernof70d0962017-01-30 12:39:09 +0100225#The only way to install python-bottle on Centos7 is with easy_install or pip
226[ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && easy_install -U bottle
bayramovfe3f3c92016-10-04 07:53:41 +0400227
228#required for vmware connector TODO move that to separete opt in install script
229sudo pip install --upgrade pip
230sudo pip install pyvcloud
231sudo pip install progressbar
232sudo pip install prettytable
bhangarefda5f7c2017-01-12 23:50:34 -0800233sudo pip install pyvmomi
garciadeblas16304ba2016-05-11 14:47:39 +0200234
garciadeblasaa1044b2017-04-21 07:12:17 +0200235#required for AWS connector
tiernof70d0962017-01-30 12:39:09 +0100236[ "$_DISTRO" == "Ubuntu" ] && install_packages "python-boto"
237[ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && install_packages "python-boto" #TODO check if at Centos it exist with this name, or PIP should be used
garciadeblas16304ba2016-05-11 14:47:39 +0200238
239#install openstack client needed for using openstack as a VIM
tierno93bffb42016-12-31 17:08:51 +0100240[ "$_DISTRO" == "Ubuntu" ] && install_packages "python-novaclient python-keystoneclient python-glanceclient python-neutronclient python-cinderclient"
241[ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && install_packages "python-devel" && easy_install python-novaclient python-keystoneclient python-glanceclient python-neutronclient python-cinderclient #TODO revise if gcc python-pip is needed
garciadeblasaa1044b2017-04-21 07:12:17 +0200242fi #if (PYTHON PACKAGES AND PIP PACKAGES)
garciadeblas16304ba2016-05-11 14:47:39 +0200243
garciadeblas89b3d842016-09-19 15:18:33 +0200244if [[ -z $NOCLONE ]]; then
245 echo '
garciadeblas16304ba2016-05-11 14:47:39 +0200246#################################################################
247##### DOWNLOAD SOURCE #####
248#################################################################'
tierno26777652016-11-15 17:33:13 +0000249 su $SUDO_USER -c "git clone ${GIT_URL} ${OPENMANO_BASEFOLDER}"
250 su $SUDO_USER -c "cp ${OPENMANO_BASEFOLDER}/.gitignore-common ${OPENMANO_BASEFOLDER}/.gitignore"
tierno443c84a2017-04-24 12:31:33 +0200251 [[ -z $DEVELOP ]] && su $SUDO_USER -c "git -C ${OPENMANO_BASEFOLDER} checkout v2.0"
garciadeblas89b3d842016-09-19 15:18:33 +0200252fi
garciadeblas16304ba2016-05-11 14:47:39 +0200253
254echo '
255#################################################################
garciadeblasc53ebfa2017-03-31 16:02:13 +0200256##### INSTALLING OVIM LIBRARY #####
257#################################################################'
258su $SUDO_USER -c "git -C ${OPENMANO_BASEFOLDER} clone ${GIT_OVIM_URL} openvim"
tierno443c84a2017-04-24 12:31:33 +0200259[[ -z $DEVELOP ]] && su $SUDO_USER -c "git -C ${OPENMANO_BASEFOLDER}/openvim checkout v2.0"
garciadeblase02ee6e2017-04-24 13:01:45 +0200260trap 'rm -rf "${OPENMANO_BASEFOLDER}/openvim"' EXIT
261
garciadeblasc53ebfa2017-03-31 16:02:13 +0200262# Install debian dependencies before setup.py
garciadeblasaa1044b2017-04-21 07:12:17 +0200263[ "$_DISTRO" == "Ubuntu" ] && install_packages "libmysqlclient-dev"
264[ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && install_packages "libmysqlclient-dev" #TODO check if that's the name in CentOS and RedHat
garciadeblasc53ebfa2017-03-31 16:02:13 +0200265make -C ${OPENMANO_BASEFOLDER}/openvim lite
garciadeblasd5b5dcc2017-04-21 13:05:56 +0200266OSMLIBOVIM_PATH=`python -c 'import lib_osm_openvim; print lib_osm_openvim.__path__[0]'`
garciadeblasc53ebfa2017-03-31 16:02:13 +0200267
garciadeblas16304ba2016-05-11 14:47:39 +0200268if [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ]
269then
270 echo '
271#################################################################
272##### CONFIGURE firewalld #####
273#################################################################'
tiernoc50e5da2016-07-06 17:49:45 +0200274 KK=yes
275 [[ -z $QUIET_MODE ]] && read -e -p "Configure firewalld for openmanod port 9090? (Y/n)" KK
garciadeblas16304ba2016-05-11 14:47:39 +0200276 if [ "$KK" != "n" -a "$KK" != "no" ]
277 then
278 #Creates a service file for openmano
279 echo '<?xml version="1.0" encoding="utf-8"?>
280<service>
281 <short>openmanod</short>
282 <description>openmanod service</description>
283 <port protocol="tcp" port="9090"/>
284</service>' > /etc/firewalld/services/openmanod.xml
285 #put proper permissions
286 pushd /etc/firewalld/services > /dev/null
287 restorecon openmanod.xml
288 chmod 640 openmanod.xml
289 popd > /dev/null
290 #Add the openmanod service to the default zone permanently and reload the firewall configuration
291 firewall-cmd --permanent --add-service=openmanod > /dev/null
292 firewall-cmd --reload > /dev/null
293 echo "done."
294 else
295 echo "skipping."
296 fi
297fi
298
299echo '
300#################################################################
301##### CONFIGURE OPENMANO CLIENT #####
302#################################################################'
tierno26777652016-11-15 17:33:13 +0000303#creates a link at ~/bin if not configured as a service
304if [[ -z "$INSTALL_AS_A_SERVICE" ]]
tiernoc50e5da2016-07-06 17:49:45 +0200305then
tierno26777652016-11-15 17:33:13 +0000306 su $SUDO_USER -c 'mkdir -p ${HOME}/bin'
307 su $SUDO_USER -c 'rm -f ${HOME}/bin/openmano'
308 su $SUDO_USER -c 'rm -f ${HOME}/bin/openmano-report'
309 su $SUDO_USER -c 'rm -f ${HOME}/bin/service-openmano'
tiernoaa5832d2016-12-07 16:20:25 +0100310 su $SUDO_USER -c "ln -s '${OPENMANO_BASEFOLDER}/openmano' "'${HOME}/bin/openmano'
311 su $SUDO_USER -c "ln -s '${OPENMANO_BASEFOLDER}/scripts/openmano-report.sh' "'${HOME}/bin/openmano-report'
312 su $SUDO_USER -c "ln -s '${OPENMANO_BASEFOLDER}/scripts/service-openmano.sh' "'${HOME}/bin/service-openmano'
tierno26777652016-11-15 17:33:13 +0000313
314 #insert /home/<user>/bin in the PATH
315 #skiped because normally this is done authomatically when ~/bin exist
316 #if ! su $SUDO_USER -c 'echo $PATH' | grep -q "${HOME}/bin"
317 #then
318 # echo " inserting /home/$SUDO_USER/bin in the PATH at .bashrc"
319 # su $SUDO_USER -c 'echo "PATH=\$PATH:\${HOME}/bin" >> ~/.bashrc'
320 #fi
321 if [[ $SUDO_USER == root ]]
tiernoc50e5da2016-07-06 17:49:45 +0200322 then
tierno26777652016-11-15 17:33:13 +0000323 if ! echo $PATH | grep -q "${HOME}/bin"
324 then
325 echo "PATH=\$PATH:\${HOME}/bin" >> ${HOME}/.bashrc
326 fi
327 fi
328fi
garciadeblas16304ba2016-05-11 14:47:39 +0200329
330#configure arg-autocomplete for this user
331#in case of minimal instalation this package is not installed by default
332[[ "$_DISTRO" == "CentOS" || "$_DISTRO" == "Red" ]] && yum install -y bash-completion
333#su $SUDO_USER -c 'mkdir -p ~/.bash_completion.d'
334su $SUDO_USER -c 'activate-global-python-argcomplete --user'
tiernoc50e5da2016-07-06 17:49:45 +0200335if ! su $SUDO_USER -c 'grep -q bash_completion.d/python-argcomplete.sh ${HOME}/.bashrc'
garciadeblas16304ba2016-05-11 14:47:39 +0200336then
337 echo " inserting .bash_completion.d/python-argcomplete.sh execution at .bashrc"
tiernoc50e5da2016-07-06 17:49:45 +0200338 su $SUDO_USER -c 'echo ". ${HOME}/.bash_completion.d/python-argcomplete.sh" >> ~/.bashrc'
garciadeblas16304ba2016-05-11 14:47:39 +0200339fi
340
Gennadiy Dubina89cb0d12017-04-03 15:46:41 +0300341if [ -z "$NO_DB" ]; then
342echo '
343#################################################################
344##### INSTALL DATABASE SERVER #####
345#################################################################'
tierno45a52852016-08-26 14:39:42 +0200346
Gennadiy Dubina89cb0d12017-04-03 15:46:41 +0300347 if [ -n "$QUIET_MODE" ]; then
348 DB_QUIET='-q'
349 fi
tierno443c84a2017-04-24 12:31:33 +0200350 ${OPENMANO_BASEFOLDER}/database_utils/install-db-server.sh -U $DBUSER ${DBPASSWD_PARAM/p/P} $DB_QUIET $DB_FORCE_UPDATE || exit 1
tierno05a8b7b2017-04-20 18:56:07 +0200351echo '
352#################################################################
353##### CREATE AND INIT MANO_VIM DATABASE #####
354#################################################################'
355# Install mano_vim_db after setup
tierno443c84a2017-04-24 12:31:33 +0200356 ${OSMLIBOVIM_PATH}/database_utils/install-db-server.sh -U $DBUSER ${DBPASSWD_PARAM/p/P} -u mano -p manopw -d mano_vim_db $DB_QUIET $DB_FORCE_UPDATE || exit 1
tierno45a52852016-08-26 14:39:42 +0200357
Gennadiy Dubina89cb0d12017-04-03 15:46:41 +0300358fi
tierno45a52852016-08-26 14:39:42 +0200359
tierno26777652016-11-15 17:33:13 +0000360if [[ -n "$INSTALL_AS_A_SERVICE" ]]
tierno45a52852016-08-26 14:39:42 +0200361then
362echo '
363#################################################################
364##### CONFIGURE OPENMANO SERVICE #####
365#################################################################'
366
tiernoaa5832d2016-12-07 16:20:25 +0100367 ${OPENMANO_BASEFOLDER}/scripts/install-openmano-service.sh -f ${OPENMANO_BASEFOLDER} `[[ -z "$NOCLONE" ]] && echo "-d"`
tierno26777652016-11-15 17:33:13 +0000368# rm -rf ${OPENMANO_BASEFOLDER}
tierno45a52852016-08-26 14:39:42 +0200369# alias service-openmano="service openmano"
370# echo 'alias service-openmano="service openmano"' >> ${HOME}/.bashrc
371
372 echo
tierno26777652016-11-15 17:33:13 +0000373 echo "Done! installed at /opt/openmano"
374 echo " Manage server with 'sudo service openmano start|stop|status|...' "
tierno45a52852016-08-26 14:39:42 +0200375
376
377else
378
379 echo
380 echo "Done! you may need to logout and login again for loading client configuration"
tierno26777652016-11-15 17:33:13 +0000381 echo " Run './${OPENMANO_BASEFOLDER}/scripts/service-openmano.sh start' for starting openmano in a screen"
tierno45a52852016-08-26 14:39:42 +0200382
383fi
garciadeblas16304ba2016-05-11 14:47:39 +0200384