| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 1 | #!/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 | |
| tierno | 7684184 | 2016-09-27 09:18:28 +0000 | [diff] [blame] | 24 | #ONLY TESTED in Ubuntu 16.04 partially tested in Ubuntu 14.10 14.04 16.04, CentOS7 and RHEL7 |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 25 | #Get needed packages, source code and configure to run openmano |
| 26 | #Ask for database user and password if not provided |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 27 | |
| 28 | function usage(){ |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 29 | echo -e "usage: sudo $0 [OPTIONS]" |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 30 | 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" |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 32 | echo -e " OPTIONS" |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 33 | 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" |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 35 | echo -e " -q --quiet: install in unattended mode" |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 36 | echo -e " -h --help: show this help" |
| 37 | echo -e " --develop: install last version for developers, and do not configure as a service" |
| tierno | 2677765 | 2016-11-15 17:33:13 +0000 | [diff] [blame] | 38 | echo -e " --forcedb: reinstall mano_db DB, deleting previous database if exists and creating a new one" |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 39 | echo -e " --updatedb: do not reinstall mano_db DB if it exists, just update database" |
| tierno | 443c84a | 2017-04-24 12:31:33 +0200 | [diff] [blame] | 40 | echo -e " --force: makes idenpotent, delete previous installations folders if needed. It assumes --updatedb if --forcedb option is not provided" |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 41 | echo -e " --noclone: assumes that openmano was cloned previously and that this script is run from the local repo" |
| tierno | 7684184 | 2016-09-27 09:18:28 +0000 | [diff] [blame] | 42 | 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" |
| garciadeblas | 5b1a664 | 2017-04-18 10:10:31 +0200 | [diff] [blame] | 43 | echo -e " --no-db: do not install mysql server" |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | function install_packages(){ |
| 47 | [ -x /usr/bin/apt-get ] && apt-get install -y $* |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 48 | [ -x /usr/bin/yum ] && yum install -y $* |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 49 | |
| 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 |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 58 | echo "failed to install package '$PACKAGE'. Revise network connectivity and try again" >&2 |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 59 | exit 1 |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 60 | fi |
| 61 | done |
| 62 | } |
| 63 | |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 64 | function ask_user(){ |
| 65 | # ask to the user and parse a response among 'y', 'yes', 'n' or 'no'. Case insensitive |
| 66 | # Params: $1 text to ask; $2 Action by default, can be 'y' for yes, 'n' for no, other or empty for not allowed |
| 67 | # Return: true(0) if user type 'yes'; false (1) if user type 'no' |
| 68 | read -e -p "$1" USER_CONFIRMATION |
| 69 | while true ; do |
| 70 | [ -z "$USER_CONFIRMATION" ] && [ "$2" == 'y' ] && return 0 |
| 71 | [ -z "$USER_CONFIRMATION" ] && [ "$2" == 'n' ] && return 1 |
| 72 | [ "${USER_CONFIRMATION,,}" == "yes" ] || [ "${USER_CONFIRMATION,,}" == "y" ] && return 0 |
| 73 | [ "${USER_CONFIRMATION,,}" == "no" ] || [ "${USER_CONFIRMATION,,}" == "n" ] && return 1 |
| 74 | read -e -p "Please type 'yes' or 'no': " USER_CONFIRMATION |
| 75 | done |
| 76 | } |
| 77 | |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 78 | GIT_URL=https://osm.etsi.org/gerrit/osm/RO.git |
| garciadeblas | c53ebfa | 2017-03-31 16:02:13 +0200 | [diff] [blame] | 79 | GIT_OVIM_URL=https://osm.etsi.org/gerrit/osm/openvim.git |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 80 | DBUSER="root" |
| 81 | DBPASSWD="" |
| 82 | DBPASSWD_PARAM="" |
| 83 | QUIET_MODE="" |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 84 | DEVELOP="" |
| tierno | 443c84a | 2017-04-24 12:31:33 +0200 | [diff] [blame] | 85 | DB_FORCE_UPDATE="" |
| 86 | UPDATEDB="" |
| tierno | 2677765 | 2016-11-15 17:33:13 +0000 | [diff] [blame] | 87 | FORCE="" |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 88 | NOCLONE="" |
| tierno | 7684184 | 2016-09-27 09:18:28 +0000 | [diff] [blame] | 89 | NO_PACKAGES="" |
| Gennadiy Dubina | 89cb0d1 | 2017-04-03 15:46:41 +0300 | [diff] [blame] | 90 | NO_DB="" |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 91 | |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 92 | while getopts ":u:p:hiq-:" o; do |
| 93 | case "${o}" in |
| 94 | u) |
| 95 | export DBUSER="$OPTARG" |
| 96 | ;; |
| 97 | p) |
| 98 | export DBPASSWD="$OPTARG" |
| 99 | export DBPASSWD_PARAM="-p$OPTARG" |
| 100 | ;; |
| 101 | q) |
| 102 | export QUIET_MODE=yes |
| 103 | export DEBIAN_FRONTEND=noninteractive |
| 104 | ;; |
| 105 | h) |
| 106 | usage && exit 0 |
| 107 | ;; |
| 108 | -) |
| 109 | [ "${OPTARG}" == "help" ] && usage && exit 0 |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 110 | [ "${OPTARG}" == "develop" ] && DEVELOP="y" && continue |
| tierno | 443c84a | 2017-04-24 12:31:33 +0200 | [diff] [blame] | 111 | [ "${OPTARG}" == "forcedb" ] && DB_FORCE_UPDATE="${DB_FORCE_UPDATE}--forcedb" && continue |
| 112 | [ "${OPTARG}" == "updatedb" ] && DB_FORCE_UPDATE="${DB_FORCE_UPDATE}--updatedb" && continue |
| 113 | [ "${OPTARG}" == "force" ] && FORCE="y" && continue |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 114 | [ "${OPTARG}" == "noclone" ] && NOCLONE="y" && continue |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 115 | [ "${OPTARG}" == "quiet" ] && export QUIET_MODE=yes && export DEBIAN_FRONTEND=noninteractive && continue |
| tierno | 7684184 | 2016-09-27 09:18:28 +0000 | [diff] [blame] | 116 | [ "${OPTARG}" == "no-install-packages" ] && export NO_PACKAGES=yes && continue |
| Gennadiy Dubina | 89cb0d1 | 2017-04-03 15:46:41 +0300 | [diff] [blame] | 117 | [ "${OPTARG}" == "no-db" ] && NO_DB="y" && continue |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 118 | echo -e "Invalid option: '--$OPTARG'\nTry $0 --help for more information" >&2 |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 119 | exit 1 |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 120 | ;; |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 121 | \?) |
| 122 | echo -e "Invalid option: '-$OPTARG'\nTry $0 --help for more information" >&2 |
| 123 | exit 1 |
| 124 | ;; |
| 125 | :) |
| 126 | echo -e "Option '-$OPTARG' requires an argument\nTry $0 --help for more information" >&2 |
| 127 | exit 1 |
| 128 | ;; |
| 129 | *) |
| 130 | usage >&2 |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 131 | exit 1 |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 132 | ;; |
| 133 | esac |
| 134 | done |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 135 | |
| tierno | 443c84a | 2017-04-24 12:31:33 +0200 | [diff] [blame] | 136 | if [ "$DB_FORCE_UPDATE" == "--forcedb--updatedb" ] || [ "$DB_FORCE_UPDATE" == "--updatedb--forcedb" ] ; then |
| 137 | echo "Error: options --forcedb and --updatedb are mutually exclusive" >&2 |
| 138 | exit 1 |
| 139 | elif [ -n "$FORCE" ] && [ -z "$DB_FORCE_UPDATE" ] ; then |
| 140 | DB_FORCE_UPDATE="--updatedb" |
| 141 | fi |
| 142 | |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 143 | #check root privileges and non a root user behind |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 144 | [ "$USER" != "root" ] && echo "Needed root privileges" >&2 && exit 1 |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 145 | if [[ -z "$SUDO_USER" ]] || [[ "$SUDO_USER" = "root" ]] |
| 146 | then |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 147 | [[ -z $QUIET_MODE ]] && ! ask_user "Install in the root user (y/N)? " n && echo "Cancelled" && exit 1 |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 148 | export SUDO_USER=root |
| 149 | fi |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 150 | |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 151 | # Discover Linux distribution |
| 152 | # try redhat type |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 153 | [ -f /etc/redhat-release ] && _DISTRO=$(cat /etc/redhat-release 2>/dev/null | cut -d" " -f1) |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 154 | # if not assuming ubuntu type |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 155 | [ -f /etc/redhat-release ] || _DISTRO=$(lsb_release -is 2>/dev/null) |
| 156 | if [ "$_DISTRO" == "Ubuntu" ] |
| 157 | then |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 158 | _RELEASE=$(lsb_release -rs) |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 159 | if [[ ${_RELEASE%%.*} != 14 ]] && [[ ${_RELEASE%%.*} != 16 ]] |
| 160 | then |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 161 | [[ -z $QUIET_MODE ]] && |
| 162 | ! ask_user "WARNING! Not tested Ubuntu version. Continue assuming a trusty (14.XX)' (y/N)? " n && |
| 163 | echo "Cancelled" && exit 1 |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 164 | _RELEASE = 14 |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 165 | fi |
| 166 | elif [ "$_DISTRO" == "CentOS" ] |
| 167 | then |
| 168 | _RELEASE="7" |
| 169 | if ! cat /etc/redhat-release | grep -q "7." |
| 170 | then |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 171 | [[ -z $QUIET_MODE ]] && |
| 172 | ! ask_user "WARNING! Not tested CentOS version. Continue assuming a '$_RELEASE' type (y/N)? " n && |
| 173 | echo "Cancelled" && exit 1 |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 174 | fi |
| 175 | elif [ "$_DISTRO" == "Red" ] |
| 176 | then |
| 177 | _RELEASE="7" |
| 178 | if ! cat /etc/redhat-release | grep -q "7." |
| 179 | then |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 180 | [[ -z $QUIET_MODE ]] && |
| 181 | ! ask_user "WARNING! Not tested Red Hat OS version. Continue assuming a '$_RELEASE' type (y/N)? " n && |
| 182 | echo "Cancelled" && exit 1 |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 183 | fi |
| 184 | else #[ "$_DISTRO" != "Ubuntu" -a "$_DISTRO" != "CentOS" -a "$_DISTRO" != "Red" ] |
| 185 | _DISTRO_DISCOVER=$_DISTRO |
| 186 | [ -x /usr/bin/apt-get ] && _DISTRO="Ubuntu" && _RELEASE="14" |
| 187 | [ -x /usr/bin/yum ] && _DISTRO="CentOS" && _RELEASE="7" |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 188 | [[ -z $QUIET_MODE ]] && |
| 189 | ! ask_user "WARNING! Not tested Linux distribution '$_DISTRO_DISCOVER '. Continue assuming a '$_DISTRO $_RELEASE' type (y/N)? " n && |
| 190 | echo "Cancelled" && exit 1 |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 191 | fi |
| 192 | |
| tierno | 2677765 | 2016-11-15 17:33:13 +0000 | [diff] [blame] | 193 | #check if installed as a service |
| 194 | INSTALL_AS_A_SERVICE="" |
| 195 | [[ "$_DISTRO" == "Ubuntu" ]] && [[ ${_RELEASE%%.*} == 16 ]] && [[ -z $DEVELOP ]] && INSTALL_AS_A_SERVICE="y" |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 196 | |
| 197 | # Next operations require knowing BASEFOLDER |
| tierno | 2677765 | 2016-11-15 17:33:13 +0000 | [diff] [blame] | 198 | if [[ -z "$NOCLONE" ]]; then |
| tierno | aa5832d | 2016-12-07 16:20:25 +0100 | [diff] [blame] | 199 | if [[ -n "$INSTALL_AS_A_SERVICE" ]] ; then |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 200 | BASEFOLDER=__openmano__${RANDOM} |
| tierno | aa5832d | 2016-12-07 16:20:25 +0100 | [diff] [blame] | 201 | else |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 202 | BASEFOLDER="${PWD}/openmano" |
| tierno | aa5832d | 2016-12-07 16:20:25 +0100 | [diff] [blame] | 203 | fi |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 204 | [[ -n "$FORCE" ]] && rm -rf $BASEFOLDER #make idempotent |
| tierno | 2677765 | 2016-11-15 17:33:13 +0000 | [diff] [blame] | 205 | else |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 206 | HERE=$(dirname $(readlink -f ${BASH_SOURCE[0]})) |
| 207 | BASEFOLDER=$(dirname $HERE) |
| tierno | 2677765 | 2016-11-15 17:33:13 +0000 | [diff] [blame] | 208 | fi |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 209 | |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 210 | if [[ -z "$NO_PACKAGES" ]] |
| tierno | 7684184 | 2016-09-27 09:18:28 +0000 | [diff] [blame] | 211 | then |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 212 | echo -e "\n"\ |
| 213 | "#################################################################\n"\ |
| 214 | "##### UPDATE REPOSITORIES #####\n"\ |
| 215 | "#################################################################" |
| 216 | [ "$_DISTRO" == "Ubuntu" ] && apt-get update -y |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 217 | |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 218 | [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && yum check-update -y |
| 219 | [ "$_DISTRO" == "CentOS" ] && sudo yum install -y epel-release |
| 220 | [ "$_DISTRO" == "Red" ] && wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm \ |
| 221 | && sudo rpm -ivh epel-release-7-5.noarch.rpm && sudo yum install -y epel-release && rm -f epel-release-7-5.noarch.rpm |
| 222 | [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && sudo yum repolist |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 223 | |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 224 | echo -e "\n"\ |
| 225 | "#################################################################\n"\ |
| 226 | "##### INSTALL REQUIRED PACKAGES #####\n"\ |
| 227 | "#################################################################" |
| 228 | [ "$_DISTRO" == "Ubuntu" ] && install_packages "git make screen wget mysql-client" |
| 229 | [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && install_packages "git make screen wget mariadb-client" |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 230 | |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 231 | echo -e "\n"\ |
| 232 | "#################################################################\n"\ |
| 233 | "##### INSTALL PYTHON PACKAGES #####\n"\ |
| 234 | "#################################################################" |
| 235 | [ "$_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" |
| 236 | [ "$_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" |
| 237 | # The only way to install python-bottle on Centos7 is with easy_install or pip |
| 238 | [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && easy_install -U bottle |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 239 | |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 240 | # required for vmware connector TODO move that to separete opt in install script |
| 241 | sudo pip install --upgrade pip |
| 242 | sudo pip install pyvcloud |
| 243 | sudo pip install progressbar |
| 244 | sudo pip install prettytable |
| 245 | sudo pip install pyvmomi |
| bayramov | fe3f3c9 | 2016-10-04 07:53:41 +0400 | [diff] [blame] | 246 | |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 247 | # required for AWS connector |
| 248 | [ "$_DISTRO" == "Ubuntu" ] && install_packages "python-boto" |
| 249 | [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && install_packages "python-boto" #TODO check if at Centos it exists with this name, or PIP should be used |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 250 | |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 251 | # install openstack client needed for using openstack as a VIM |
| tierno | b4c2239 | 2017-06-14 12:55:38 +0200 | [diff] [blame] | 252 | [ "$_DISTRO" == "Ubuntu" ] && install_packages "python-novaclient python-keystoneclient python-glanceclient "\ |
| 253 | "python-neutronclient python-cinderclient python-openstackclient" |
| 254 | [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && install_packages "python-devel" && easy_install \ |
| 255 | python-novaclient python-keystoneclient python-glanceclient python-neutronclient python-cinderclient \ |
| 256 | python-openstackclient #TODO revise if gcc python-pip is needed |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 257 | fi # [[ -z "$NO_PACKAGES" ]] |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 258 | |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 259 | if [[ -z $NOCLONE ]]; then |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 260 | echo -e "\n"\ |
| 261 | "#################################################################\n"\ |
| 262 | "##### DOWNLOAD SOURCE #####\n"\ |
| 263 | "#################################################################" |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 264 | if [[ -d "${BASEFOLDER}" ]] ; then |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 265 | if [[ -n "$FORCE" ]] ; then |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 266 | echo "deleting '${BASEFOLDER}' folder" |
| 267 | rm -rf "$BASEFOLDER" #make idempotent |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 268 | elif [[ -z "$QUIET_MODE" ]] ; then |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 269 | ! ask_user "folder '${BASEFOLDER}' exists, overwrite (y/N)? " n && echo "Cancelled!" && exit 1 |
| 270 | rm -rf "$BASEFOLDER" |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 271 | else |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 272 | echo "'${BASEFOLDER}' folder exists. Use "--force" to overwrite" >&2 && exit 1 |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 273 | fi |
| 274 | fi |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 275 | su $SUDO_USER -c "git clone ${GIT_URL} ${BASEFOLDER}" |
| tierno | 6e8b5a8 | 2017-05-26 11:20:48 +0200 | [diff] [blame] | 276 | LATEST_STABLE_TAG=`git -C "${BASEFOLDER}" tag -l v[0-9].* | tail -n1` |
| 277 | [[ -z $DEVELOP ]] && su $SUDO_USER -c "git -C ${BASEFOLDER} checkout tags/${LATEST_STABLE_TAG}" |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 278 | su $SUDO_USER -c "cp ${BASEFOLDER}/.gitignore-common ${BASEFOLDER}/.gitignore" |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 279 | fi |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 280 | |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 281 | echo -e "\n"\ |
| 282 | "#################################################################\n"\ |
| 283 | "##### INSTALLING OVIM LIBRARY #####\n"\ |
| 284 | "#################################################################" |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 285 | su $SUDO_USER -c "git -C ${BASEFOLDER} clone ${GIT_OVIM_URL} openvim" |
| 286 | [[ -z $DEVELOP ]] && su $SUDO_USER -c "git -C ${BASEFOLDER}/openvim checkout v2.0" |
| garciadeblas | e02ee6e | 2017-04-24 13:01:45 +0200 | [diff] [blame] | 287 | |
| garciadeblas | c53ebfa | 2017-03-31 16:02:13 +0200 | [diff] [blame] | 288 | # Install debian dependencies before setup.py |
| garciadeblas | aa1044b | 2017-04-21 07:12:17 +0200 | [diff] [blame] | 289 | [ "$_DISTRO" == "Ubuntu" ] && install_packages "libmysqlclient-dev" |
| 290 | [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && install_packages "libmysqlclient-dev" #TODO check if that's the name in CentOS and RedHat |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 291 | make -C ${BASEFOLDER}/openvim lite |
| 292 | rm -rf "${BASEFOLDER}/openvim" |
| garciadeblas | d5b5dcc | 2017-04-21 13:05:56 +0200 | [diff] [blame] | 293 | OSMLIBOVIM_PATH=`python -c 'import lib_osm_openvim; print lib_osm_openvim.__path__[0]'` |
| garciadeblas | c53ebfa | 2017-03-31 16:02:13 +0200 | [diff] [blame] | 294 | |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 295 | if [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] |
| 296 | then |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 297 | echo -e "\n"\ |
| 298 | "#################################################################\n"\ |
| 299 | "##### CONFIGURE firewalld #####\n"\ |
| 300 | "#################################################################" |
| 301 | if [[ -z $QUIET_MODE ]] || ask_user "Configure firewalld for openmanod port 9090 (Y/n)? " y |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 302 | then |
| 303 | #Creates a service file for openmano |
| 304 | echo '<?xml version="1.0" encoding="utf-8"?> |
| 305 | <service> |
| 306 | <short>openmanod</short> |
| 307 | <description>openmanod service</description> |
| 308 | <port protocol="tcp" port="9090"/> |
| 309 | </service>' > /etc/firewalld/services/openmanod.xml |
| 310 | #put proper permissions |
| 311 | pushd /etc/firewalld/services > /dev/null |
| 312 | restorecon openmanod.xml |
| 313 | chmod 640 openmanod.xml |
| 314 | popd > /dev/null |
| 315 | #Add the openmanod service to the default zone permanently and reload the firewall configuration |
| 316 | firewall-cmd --permanent --add-service=openmanod > /dev/null |
| 317 | firewall-cmd --reload > /dev/null |
| 318 | echo "done." |
| 319 | else |
| 320 | echo "skipping." |
| 321 | fi |
| 322 | fi |
| 323 | |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 324 | echo -e "\n"\ |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 325 | "#################################################################\n"\ |
| 326 | "##### CONFIGURE OPENMANO CLIENT #####\n"\ |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 327 | "#################################################################" |
| tierno | 2677765 | 2016-11-15 17:33:13 +0000 | [diff] [blame] | 328 | #creates a link at ~/bin if not configured as a service |
| 329 | if [[ -z "$INSTALL_AS_A_SERVICE" ]] |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 330 | then |
| tierno | 2677765 | 2016-11-15 17:33:13 +0000 | [diff] [blame] | 331 | su $SUDO_USER -c 'mkdir -p ${HOME}/bin' |
| 332 | su $SUDO_USER -c 'rm -f ${HOME}/bin/openmano' |
| 333 | su $SUDO_USER -c 'rm -f ${HOME}/bin/openmano-report' |
| 334 | su $SUDO_USER -c 'rm -f ${HOME}/bin/service-openmano' |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 335 | su $SUDO_USER -c "ln -s '${BASEFOLDER}/openmano' "'${HOME}/bin/openmano' |
| 336 | su $SUDO_USER -c "ln -s '${BASEFOLDER}/scripts/openmano-report.sh' "'${HOME}/bin/openmano-report' |
| 337 | su $SUDO_USER -c "ln -s '${BASEFOLDER}/scripts/service-openmano' "'${HOME}/bin/service-openmano' |
| tierno | 2677765 | 2016-11-15 17:33:13 +0000 | [diff] [blame] | 338 | |
| 339 | #insert /home/<user>/bin in the PATH |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 340 | #skiped because normally this is done authomatically when ~/bin exists |
| tierno | 2677765 | 2016-11-15 17:33:13 +0000 | [diff] [blame] | 341 | #if ! su $SUDO_USER -c 'echo $PATH' | grep -q "${HOME}/bin" |
| 342 | #then |
| 343 | # echo " inserting /home/$SUDO_USER/bin in the PATH at .bashrc" |
| 344 | # su $SUDO_USER -c 'echo "PATH=\$PATH:\${HOME}/bin" >> ~/.bashrc' |
| 345 | #fi |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 346 | |
| 347 | if [[ $SUDO_USER == root ]] |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 348 | then |
| tierno | 2677765 | 2016-11-15 17:33:13 +0000 | [diff] [blame] | 349 | if ! echo $PATH | grep -q "${HOME}/bin" |
| 350 | then |
| 351 | echo "PATH=\$PATH:\${HOME}/bin" >> ${HOME}/.bashrc |
| 352 | fi |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 353 | fi |
| tierno | 2677765 | 2016-11-15 17:33:13 +0000 | [diff] [blame] | 354 | fi |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 355 | |
| 356 | #configure arg-autocomplete for this user |
| 357 | #in case of minimal instalation this package is not installed by default |
| 358 | [[ "$_DISTRO" == "CentOS" || "$_DISTRO" == "Red" ]] && yum install -y bash-completion |
| 359 | #su $SUDO_USER -c 'mkdir -p ~/.bash_completion.d' |
| 360 | su $SUDO_USER -c 'activate-global-python-argcomplete --user' |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 361 | if ! su $SUDO_USER -c 'grep -q bash_completion.d/python-argcomplete.sh ${HOME}/.bashrc' |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 362 | then |
| 363 | echo " inserting .bash_completion.d/python-argcomplete.sh execution at .bashrc" |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 364 | su $SUDO_USER -c 'echo ". ${HOME}/.bash_completion.d/python-argcomplete.sh" >> ~/.bashrc' |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 365 | fi |
| 366 | |
| Gennadiy Dubina | 89cb0d1 | 2017-04-03 15:46:41 +0300 | [diff] [blame] | 367 | if [ -z "$NO_DB" ]; then |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 368 | echo -e "\n"\ |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 369 | "#################################################################\n"\ |
| 370 | "##### INSTALL DATABASE SERVER #####\n"\ |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 371 | "#################################################################" |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 372 | |
| Gennadiy Dubina | 89cb0d1 | 2017-04-03 15:46:41 +0300 | [diff] [blame] | 373 | if [ -n "$QUIET_MODE" ]; then |
| 374 | DB_QUIET='-q' |
| 375 | fi |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 376 | ${BASEFOLDER}/database_utils/install-db-server.sh -U $DBUSER ${DBPASSWD_PARAM/p/P} $DB_QUIET $DB_FORCE_UPDATE || exit 1 |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 377 | echo -e "\n"\ |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 378 | "#################################################################\n"\ |
| 379 | "##### CREATE AND INIT MANO_VIM DATABASE #####\n"\ |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 380 | "#################################################################" |
| 381 | # Install mano_vim_db after setup |
| 382 | ${OSMLIBOVIM_PATH}/database_utils/install-db-server.sh -U $DBUSER ${DBPASSWD_PARAM/p/P} -u mano -p manopw -d mano_vim_db --no-install-packages $DB_QUIET $DB_FORCE_UPDATE || exit 1 |
| 383 | fi # [ -z "$NO_DB" ] |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 384 | |
| tierno | 2677765 | 2016-11-15 17:33:13 +0000 | [diff] [blame] | 385 | if [[ -n "$INSTALL_AS_A_SERVICE" ]] |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 386 | then |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 387 | echo -e "\n"\ |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 388 | "#################################################################\n"\ |
| 389 | "##### CONFIGURE OPENMANO SERVICE #####\n"\ |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 390 | "#################################################################" |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 391 | |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 392 | ${BASEFOLDER}/scripts/install-openmano-service.sh -f ${BASEFOLDER} `[[ -z "$NOCLONE" ]] && echo "-d"` |
| 393 | # rm -rf ${BASEFOLDER} |
| tierno | 80fde98 | 2017-04-26 14:33:25 +0200 | [diff] [blame] | 394 | # alias service-openmano="service openmano" |
| 395 | # echo 'alias service-openmano="service openmano"' >> ${HOME}/.bashrc |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 396 | echo |
| tierno | 2677765 | 2016-11-15 17:33:13 +0000 | [diff] [blame] | 397 | echo "Done! installed at /opt/openmano" |
| garciadeblas | de590c0 | 2017-04-24 13:17:01 +0200 | [diff] [blame] | 398 | echo " Manage server with 'sudo service osm-ro start|stop|status|...' " |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 399 | else |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 400 | echo |
| 401 | echo "Done! you may need to logout and login again for loading client configuration" |
| tierno | 070e95f | 2017-05-05 15:55:13 +0200 | [diff] [blame] | 402 | echo " Run './${BASEFOLDER}/scripts/service-openmano start' for starting openmano in a screen" |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 403 | fi |