| 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" |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 38 | echo -e " --forcedb: reinstall mano_db DB, deleting previous database and creating a new one" |
| 39 | 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^] | 40 | 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 | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | function install_packages(){ |
| 44 | [ -x /usr/bin/apt-get ] && apt-get install -y $* |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 45 | [ -x /usr/bin/yum ] && yum install -y $* |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 46 | |
| 47 | #check properly installed |
| 48 | for PACKAGE in $* |
| 49 | do |
| 50 | PACKAGE_INSTALLED="no" |
| 51 | [ -x /usr/bin/apt-get ] && dpkg -l $PACKAGE &>> /dev/null && PACKAGE_INSTALLED="yes" |
| 52 | [ -x /usr/bin/yum ] && yum list installed $PACKAGE &>> /dev/null && PACKAGE_INSTALLED="yes" |
| 53 | if [ "$PACKAGE_INSTALLED" = "no" ] |
| 54 | then |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 55 | echo "failed to install package '$PACKAGE'. Revise network connectivity and try again" >&2 |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 56 | exit 1 |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 57 | fi |
| 58 | done |
| 59 | } |
| 60 | |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 61 | function db_exists() { |
| 62 | RESULT=`mysqlshow --defaults-extra-file="$2" | grep -v Wildcard | grep -o $1` |
| 63 | if [ "$RESULT" == "$1" ]; then |
| 64 | echo " DB $1 exists" |
| 65 | return 0 |
| 66 | fi |
| 67 | echo " DB $1 does not exist" |
| 68 | return 1 |
| 69 | } |
| 70 | |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 71 | GIT_URL=https://osm.etsi.org/gerrit/osm/RO.git |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 72 | DBUSER="root" |
| 73 | DBPASSWD="" |
| 74 | DBPASSWD_PARAM="" |
| 75 | QUIET_MODE="" |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 76 | DEVELOP="" |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 77 | FORCEDB="" |
| 78 | NOCLONE="" |
| tierno | 7684184 | 2016-09-27 09:18:28 +0000 | [diff] [blame^] | 79 | NO_PACKAGES="" |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 80 | while getopts ":u:p:hiq-:" o; do |
| 81 | case "${o}" in |
| 82 | u) |
| 83 | export DBUSER="$OPTARG" |
| 84 | ;; |
| 85 | p) |
| 86 | export DBPASSWD="$OPTARG" |
| 87 | export DBPASSWD_PARAM="-p$OPTARG" |
| 88 | ;; |
| 89 | q) |
| 90 | export QUIET_MODE=yes |
| 91 | export DEBIAN_FRONTEND=noninteractive |
| 92 | ;; |
| 93 | h) |
| 94 | usage && exit 0 |
| 95 | ;; |
| 96 | -) |
| 97 | [ "${OPTARG}" == "help" ] && usage && exit 0 |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 98 | [ "${OPTARG}" == "develop" ] && DEVELOP="y" && continue |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 99 | [ "${OPTARG}" == "forcedb" ] && FORCEDB="y" && continue |
| 100 | [ "${OPTARG}" == "noclone" ] && NOCLONE="y" && continue |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 101 | [ "${OPTARG}" == "quiet" ] && export QUIET_MODE=yes && export DEBIAN_FRONTEND=noninteractive && continue |
| tierno | 7684184 | 2016-09-27 09:18:28 +0000 | [diff] [blame^] | 102 | [ "${OPTARG}" == "no-install-packages" ] && export NO_PACKAGES=yes && continue |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 103 | 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 |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 116 | exit 1 |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 117 | ;; |
| 118 | esac |
| 119 | done |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 120 | |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 121 | #check root privileges and non a root user behind |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 122 | [ "$USER" != "root" ] && echo "Needed root privileges" >&2 && exit 1 |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 123 | if [[ -z "$SUDO_USER" ]] || [[ "$SUDO_USER" = "root" ]] |
| 124 | then |
| 125 | [[ -z $QUIET_MODE ]] && read -e -p "Install in the root user (y/N)?" KK |
| 126 | [[ -z $QUIET_MODE ]] && [[ "$KK" != "y" ]] && [[ "$KK" != "yes" ]] && echo "Cancelled" && exit 1 |
| 127 | export SUDO_USER=root |
| 128 | fi |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 129 | |
| 130 | #Discover Linux distribution |
| 131 | #try redhat type |
| 132 | [ -f /etc/redhat-release ] && _DISTRO=$(cat /etc/redhat-release 2>/dev/null | cut -d" " -f1) |
| 133 | #if not assuming ubuntu type |
| 134 | [ -f /etc/redhat-release ] || _DISTRO=$(lsb_release -is 2>/dev/null) |
| 135 | if [ "$_DISTRO" == "Ubuntu" ] |
| 136 | then |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 137 | _RELEASE=$(lsb_release -rs) |
| 138 | if [[ ${_RELEASE%%.*} != 14 ]] && [[ ${_RELEASE%%.*} != 16 ]] |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 139 | then |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 140 | [[ -z $QUIET_MODE ]] && read -e -p "WARNING! Not tested Ubuntu version. Continue assuming a trusty (14.XX)'? (y/N)" KK |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 141 | [[ -z $QUIET_MODE ]] && [[ "$KK" != "y" ]] && [[ "$KK" != "yes" ]] && echo "Cancelled" && exit 1 |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 142 | _RELEASE = 14 |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 143 | fi |
| 144 | elif [ "$_DISTRO" == "CentOS" ] |
| 145 | then |
| 146 | _RELEASE="7" |
| 147 | if ! cat /etc/redhat-release | grep -q "7." |
| 148 | then |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 149 | [[ -z $QUIET_MODE ]] && read -e -p "WARNING! Not tested CentOS version. Continue assuming a '_RELEASE' type? (y/N)" KK |
| 150 | [[ -z $QUIET_MODE ]] && [[ "$KK" != "y" ]] && [[ "$KK" != "yes" ]] && echo "Cancelled" && exit 1 |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 151 | fi |
| 152 | elif [ "$_DISTRO" == "Red" ] |
| 153 | then |
| 154 | _RELEASE="7" |
| 155 | if ! cat /etc/redhat-release | grep -q "7." |
| 156 | then |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 157 | [[ -z $QUIET_MODE ]] && read -e -p "WARNING! Not tested Red Hat OS version. Continue assuming a '_RELEASE' type? (y/N)" KK |
| 158 | [[ -z $QUIET_MODE ]] && [[ "$KK" != "y" ]] && [[ "$KK" != "yes" ]] && echo "Cancelled" && exit 1 |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 159 | fi |
| 160 | else #[ "$_DISTRO" != "Ubuntu" -a "$_DISTRO" != "CentOS" -a "$_DISTRO" != "Red" ] |
| 161 | _DISTRO_DISCOVER=$_DISTRO |
| 162 | [ -x /usr/bin/apt-get ] && _DISTRO="Ubuntu" && _RELEASE="14" |
| 163 | [ -x /usr/bin/yum ] && _DISTRO="CentOS" && _RELEASE="7" |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 164 | [[ -z $QUIET_MODE ]] && read -e -p "WARNING! Not tested Linux distribution '$_DISTRO_DISCOVER '. Continue assuming a '$_DISTRO $_RELEASE' type? (y/N)" KK |
| 165 | [[ -z $QUIET_MODE ]] && [[ "$KK" != "y" ]] && [[ "$KK" != "yes" ]] && echo "Cancelled" && exit 1 |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 166 | fi |
| 167 | |
| 168 | |
| 169 | |
| tierno | 7684184 | 2016-09-27 09:18:28 +0000 | [diff] [blame^] | 170 | if [[ -z "$NO_PACKAGES" ]] |
| 171 | then |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 172 | echo ' |
| 173 | ################################################################# |
| 174 | ##### UPDATE REPOSITORIES ##### |
| 175 | #################################################################' |
| 176 | [ "$_DISTRO" == "Ubuntu" ] && apt-get update -y |
| 177 | |
| 178 | [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && yum check-update -y |
| 179 | [ "$_DISTRO" == "CentOS" ] && sudo yum install -y epel-release |
| 180 | [ "$_DISTRO" == "Red" ] && wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm \ |
| 181 | && sudo rpm -ivh epel-release-7-5.noarch.rpm && sudo yum install -y epel-release && rm -f epel-release-7-5.noarch.rpm |
| 182 | [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && sudo yum repolist |
| 183 | |
| tierno | 7684184 | 2016-09-27 09:18:28 +0000 | [diff] [blame^] | 184 | fi |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 185 | |
| tierno | 7684184 | 2016-09-27 09:18:28 +0000 | [diff] [blame^] | 186 | if [[ -z "$NO_PACKAGES" ]] |
| 187 | then |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 188 | echo ' |
| 189 | ################################################################# |
| 190 | ##### INSTALL REQUIRED PACKAGES ##### |
| 191 | #################################################################' |
| 192 | [ "$_DISTRO" == "Ubuntu" ] && install_packages "git screen wget mysql-server" |
| 193 | [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && install_packages "git screen wget mariadb mariadb-server" |
| 194 | |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 195 | if [[ "$_DISTRO" == "Ubuntu" ]] |
| 196 | then |
| 197 | #start services. By default CentOS does not start services |
| 198 | service mysql start >> /dev/null |
| 199 | # try to set admin password, ignore if fails |
| 200 | [[ -n $DBPASSWD ]] && mysqladmin -u $DBUSER -s password $DBPASSWD |
| 201 | fi |
| 202 | |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 203 | if [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] |
| 204 | then |
| 205 | #start services. By default CentOS does not start services |
| 206 | service mariadb start |
| 207 | service httpd start |
| 208 | systemctl enable mariadb |
| 209 | systemctl enable httpd |
| 210 | read -e -p "Do you want to configure mariadb (recommended if not done before) (Y/n)" KK |
| 211 | [ "$KK" != "n" -a "$KK" != "no" ] && mysql_secure_installation |
| 212 | |
| 213 | read -e -p "Do you want to set firewall to grant web access port 80,443 (Y/n)" KK |
| 214 | [ "$KK" != "n" -a "$KK" != "no" ] && |
| 215 | firewall-cmd --permanent --zone=public --add-service=http && |
| 216 | firewall-cmd --permanent --zone=public --add-service=https && |
| 217 | firewall-cmd --reload |
| 218 | fi |
| tierno | 7684184 | 2016-09-27 09:18:28 +0000 | [diff] [blame^] | 219 | fi #[[ -z "$NO_PACKAGES" ]] |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 220 | |
| 221 | #check and ask for database user password. Must be done after database installation |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 222 | if [[ -n $QUIET_MODE ]] |
| 223 | then |
| 224 | echo -e "\nCheking database connection and ask for credentials" |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 225 | while ! mysqladmin -s -u$DBUSER $DBPASSWD_PARAM status >/dev/null |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 226 | do |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 227 | [ -n "$logintry" ] && echo -e "\nInvalid database credentials!!!. Try again (Ctrl+c to abort)" |
| 228 | [ -z "$logintry" ] && echo -e "\nProvide database credentials" |
| 229 | read -e -p "database user? ($DBUSER) " DBUSER_ |
| 230 | [ -n "$DBUSER_" ] && DBUSER=$DBUSER_ |
| 231 | read -e -s -p "database password? (Enter for not using password) " DBPASSWD_ |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 232 | [ -n "$DBPASSWD_" ] && DBPASSWD="$DBPASSWD_" && DBPASSWD_PARAM="-p$DBPASSWD_" |
| 233 | [ -z "$DBPASSWD_" ] && DBPASSWD="" && DBPASSWD_PARAM="" |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 234 | logintry="yes" |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 235 | done |
| 236 | fi |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 237 | |
| tierno | 7684184 | 2016-09-27 09:18:28 +0000 | [diff] [blame^] | 238 | if [[ -z "$NO_PACKAGES" ]] |
| 239 | then |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 240 | echo ' |
| 241 | ################################################################# |
| 242 | ##### INSTALL PYTHON PACKAGES ##### |
| 243 | #################################################################' |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 244 | [ "$_DISTRO" == "Ubuntu" ] && install_packages "python-yaml python-bottle python-mysqldb python-jsonschema python-paramiko python-argcomplete python-requests python-logutils" |
| 245 | [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && install_packages "PyYAML MySQL-python python-jsonschema python-paramiko python-argcomplete python-requests python-logutils" |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 246 | |
| 247 | #The only way to install python-bottle on Centos7 is with easy_install or pip |
| 248 | [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && easy_install -U bottle |
| 249 | |
| 250 | #install openstack client needed for using openstack as a VIM |
| 251 | [ "$_DISTRO" == "Ubuntu" ] && install_packages "python-novaclient python-keystoneclient python-glanceclient python-neutronclient" |
| 252 | [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] && install_packages "python-devel" && easy_install python-novaclient python-keystoneclient python-glanceclient python-neutronclient #TODO revise if gcc python-pip is needed |
| tierno | 7684184 | 2016-09-27 09:18:28 +0000 | [diff] [blame^] | 253 | fi #[[ -z "$NO_PACKAGES" ]] |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 254 | |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 255 | if [[ -z $NOCLONE ]]; then |
| 256 | echo ' |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 257 | ################################################################# |
| 258 | ##### DOWNLOAD SOURCE ##### |
| 259 | #################################################################' |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 260 | su $SUDO_USER -c 'git clone '"${GIT_URL}"' openmano' |
| 261 | #[[ -z $DEVELOP ]] && su $SUDO_USER -c 'git checkout <tag version>' |
| 262 | fi |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 263 | |
| 264 | echo ' |
| 265 | ################################################################# |
| 266 | ##### CREATE DATABASE ##### |
| 267 | #################################################################' |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 268 | echo -e "\nCreating temporary file form MYSQL installation and initialization" |
| 269 | TEMPFILE="$(mktemp -q --tmpdir "installopenmano.XXXXXX")" |
| garciadeblas | d1b8630 | 2016-09-20 11:54:32 +0200 | [diff] [blame] | 270 | trap 'rm -f "$TEMPFILE"' EXIT SIGINT SIGTERM |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 271 | chmod 0600 "$TEMPFILE" |
| 272 | cat >"$TEMPFILE" <<EOF |
| 273 | [client] |
| 274 | user=$DBUSER |
| 275 | password=$DBPASSWD |
| 276 | EOF |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 277 | |
| tierno | 12b1f74 | 2016-09-19 15:43:53 +0000 | [diff] [blame] | 278 | if db_exists "mano_db" $TEMPFILE ; then |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 279 | if [[ -n $FORCEDB ]]; then |
| 280 | echo " Deleting previous database mano_db" |
| 281 | DBDELETEPARAM="" |
| 282 | [[ -n $QUIET_MODE ]] && DBDELETEPARAM="-f" |
| 283 | mysqladmin --defaults-extra-file=$TEMPFILE -s drop mano_db $DBDELETEPARAM || ! echo "Could not delete mano_db database" || exit 1 |
| 284 | #echo "REVOKE ALL PRIVILEGES ON mano_db.* FROM 'mano'@'localhost';" | mysql --defaults-extra-file=$TEMPFILE -s || ! echo "Failed while creating user mano at database" || exit 1 |
| 285 | #echo "DELETE USER 'mano'@'localhost';" | mysql --defaults-extra-file=$TEMPFILE -s || ! echo "Failed while creating user mano at database" || exit 1 |
| 286 | mysqladmin --defaults-extra-file=$TEMPFILE -s create mano_db || ! echo "Error creating mano_db database" || exit 1 |
| 287 | echo "DROP USER 'mano'@'localhost';" | mysql --defaults-extra-file=$TEMPFILE -s || ! echo "Failed while creating user mano at database" || exit 1 |
| 288 | echo "CREATE USER 'mano'@'localhost' identified by 'manopw';" | mysql --defaults-extra-file=$TEMPFILE -s || ! echo "Failed while creating user mano at database" || exit 1 |
| 289 | echo "GRANT ALL PRIVILEGES ON mano_db.* TO 'mano'@'localhost';" | mysql --defaults-extra-file=$TEMPFILE -s || ! echo "Failed while creating user mano at database" || exit 1 |
| 290 | echo " Database 'mano_db' created, user 'mano' password 'manopw'" |
| 291 | else |
| 292 | echo "Database exists. Use option '--forcedb' to force the deletion of the existing one" && exit 1 |
| 293 | fi |
| 294 | else |
| tierno | 12b1f74 | 2016-09-19 15:43:53 +0000 | [diff] [blame] | 295 | mysqladmin -u$DBUSER $DBPASSWD_PARAM -s create mano_db || ! echo "Error creating mano_db database" || exit 1 |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 296 | echo "CREATE USER 'mano'@'localhost' identified by 'manopw';" | mysql --defaults-extra-file=$TEMPFILE -s || ! echo "Failed while creating user mano at database" || exit 1 |
| 297 | echo "GRANT ALL PRIVILEGES ON mano_db.* TO 'mano'@'localhost';" | mysql --defaults-extra-file=$TEMPFILE -s || ! echo "Failed while creating user mano at database" || exit 1 |
| 298 | echo " Database 'mano_db' created, user 'mano' password 'manopw'" |
| 299 | fi |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 300 | |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 301 | |
| garciadeblas | 6409b4b | 2016-09-19 22:54:40 +0200 | [diff] [blame] | 302 | #Next operations require knowing OPENMANO_BASEFOLDER |
| 303 | HERE=$(realpath $(dirname $0)) |
| 304 | if [[ -z $NOCLONE ]]; then |
| 305 | OPENMANO_BASEFOLDER="${HERE}/openmano" |
| 306 | else |
| 307 | OPENMANO_BASEFOLDER=$(dirname $HERE) |
| 308 | fi |
| 309 | |
| 310 | |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 311 | echo ' |
| 312 | ################################################################# |
| 313 | ##### INIT DATABASE ##### |
| 314 | #################################################################' |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 315 | su $SUDO_USER -c "${OPENMANO_BASEFOLDER}"'/database_utils/init_mano_db.sh -u mano -p manopw -d mano_db' || ! echo "Failed while initializing database" || exit 1 |
| 316 | |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 317 | |
| 318 | if [ "$_DISTRO" == "CentOS" -o "$_DISTRO" == "Red" ] |
| 319 | then |
| 320 | echo ' |
| 321 | ################################################################# |
| 322 | ##### CONFIGURE firewalld ##### |
| 323 | #################################################################' |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 324 | KK=yes |
| 325 | [[ -z $QUIET_MODE ]] && read -e -p "Configure firewalld for openmanod port 9090? (Y/n)" KK |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 326 | if [ "$KK" != "n" -a "$KK" != "no" ] |
| 327 | then |
| 328 | #Creates a service file for openmano |
| 329 | echo '<?xml version="1.0" encoding="utf-8"?> |
| 330 | <service> |
| 331 | <short>openmanod</short> |
| 332 | <description>openmanod service</description> |
| 333 | <port protocol="tcp" port="9090"/> |
| 334 | </service>' > /etc/firewalld/services/openmanod.xml |
| 335 | #put proper permissions |
| 336 | pushd /etc/firewalld/services > /dev/null |
| 337 | restorecon openmanod.xml |
| 338 | chmod 640 openmanod.xml |
| 339 | popd > /dev/null |
| 340 | #Add the openmanod service to the default zone permanently and reload the firewall configuration |
| 341 | firewall-cmd --permanent --add-service=openmanod > /dev/null |
| 342 | firewall-cmd --reload > /dev/null |
| 343 | echo "done." |
| 344 | else |
| 345 | echo "skipping." |
| 346 | fi |
| 347 | fi |
| 348 | |
| 349 | echo ' |
| 350 | ################################################################# |
| 351 | ##### CONFIGURE OPENMANO CLIENT ##### |
| 352 | #################################################################' |
| 353 | #creates a link at ~/bin |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 354 | su $SUDO_USER -c 'mkdir -p ${HOME}/bin' |
| 355 | su $SUDO_USER -c 'rm -f ${HOME}/bin/openmano' |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 356 | su $SUDO_USER -c 'rm -f ${HOME}/bin/openmano-report' |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 357 | su $SUDO_USER -c 'rm -f ${HOME}/bin/service-openmano' |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 358 | su $SUDO_USER -c 'ln -s '${OPENMANO_BASEFOLDER}'/openmano ${HOME}/bin/openmano' |
| 359 | su $SUDO_USER -c 'ln -s '${OPENMANO_BASEFOLDER}'/scripts/openmano-report.sh ${HOME}/bin/openmano-report' |
| 360 | su $SUDO_USER -c 'ln -s '${OPENMANO_BASEFOLDER}'/scripts/service-openmano.sh ${HOME}/bin/service-openmano' |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 361 | |
| 362 | #insert /home/<user>/bin in the PATH |
| 363 | #skiped because normally this is done authomatically when ~/bin exist |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 364 | #if ! su $SUDO_USER -c 'echo $PATH' | grep -q "${HOME}/bin" |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 365 | #then |
| 366 | # echo " inserting /home/$SUDO_USER/bin in the PATH at .bashrc" |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 367 | # su $SUDO_USER -c 'echo "PATH=\$PATH:\${HOME}/bin" >> ~/.bashrc' |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 368 | #fi |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 369 | if [[ $SUDO_USER == root ]] |
| 370 | then |
| 371 | if ! echo $PATH | grep -q "${HOME}/bin" |
| 372 | then |
| 373 | echo "PATH=\$PATH:\${HOME}/bin" >> ${HOME}/.bashrc |
| 374 | fi |
| 375 | fi |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 376 | |
| 377 | #configure arg-autocomplete for this user |
| 378 | #in case of minimal instalation this package is not installed by default |
| 379 | [[ "$_DISTRO" == "CentOS" || "$_DISTRO" == "Red" ]] && yum install -y bash-completion |
| 380 | #su $SUDO_USER -c 'mkdir -p ~/.bash_completion.d' |
| 381 | su $SUDO_USER -c 'activate-global-python-argcomplete --user' |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 382 | 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] | 383 | then |
| 384 | echo " inserting .bash_completion.d/python-argcomplete.sh execution at .bashrc" |
| tierno | c50e5da | 2016-07-06 17:49:45 +0200 | [diff] [blame] | 385 | su $SUDO_USER -c 'echo ". ${HOME}/.bash_completion.d/python-argcomplete.sh" >> ~/.bashrc' |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 386 | fi |
| 387 | |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 388 | |
| 389 | |
| 390 | |
| 391 | if [[ "$_DISTRO" == "Ubuntu" ]] && [[ ${_RELEASE%%.*} == 16 ]] && [[ -z $DEVELOP ]] |
| 392 | then |
| 393 | echo ' |
| 394 | ################################################################# |
| 395 | ##### CONFIGURE OPENMANO SERVICE ##### |
| 396 | #################################################################' |
| 397 | |
| garciadeblas | 89b3d84 | 2016-09-19 15:18:33 +0200 | [diff] [blame] | 398 | ${OPENMANO_BASEFOLDER}/scripts/install-openmano-service.sh -f ${OPENMANO_BASEFOLDER} #-u $SUDO_USER |
| tierno | 45a5285 | 2016-08-26 14:39:42 +0200 | [diff] [blame] | 399 | # alias service-openmano="service openmano" |
| 400 | # echo 'alias service-openmano="service openmano"' >> ${HOME}/.bashrc |
| 401 | |
| 402 | echo |
| 403 | echo "Done! you may need to logout and login again for loading client configuration" |
| 404 | echo " Manage server with 'service openmano start|stop|status|...' " |
| 405 | |
| 406 | |
| 407 | else |
| 408 | |
| 409 | echo |
| 410 | echo "Done! you may need to logout and login again for loading client configuration" |
| 411 | echo " Run './openmano/scripts/service-openmano.sh start' for starting openmano in a screen" |
| 412 | |
| 413 | fi |
| garciadeblas | 16304ba | 2016-05-11 14:47:39 +0200 | [diff] [blame] | 414 | |
| 415 | |
| 416 | |