#!/bin/sh # Copyright (c) 2013 Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # CentOS script. LOGLVL=1 SERVICE_CONTENT_DIRECTORY=`cd $(dirname "$0") && pwd` PREREQ_PKGS="wget make git python-pip mysql-connector-python python-devel unzip libffi-devel" PIPAPPS="pip python-pip pip-python" PIPCMD="" SERVICE_SRV_NAME="murano-dashboard" GIT_CLONE_DIR=`echo $SERVICE_CONTENT_DIRECTORY | sed -e "s/$SERVICE_SRV_NAME//"` HORIZON_CONFIGS="/opt/stack/horizon/openstack_dashboard/settings.py,/usr/share/openstack-dashboard/openstack_dashboard/settings.py" APACHE_USER=apache APACHE_GROUP=apache LOG_DIR="/var/log/murano/" # Functions # Loger function log() { MSG=$1 if [ $LOGLVL -gt 0 ]; then echo "LOG:> $MSG" fi } # Check or install package in_sys_pkg() { PKG=$1 rpm -q $PKG > /dev/null 2>&1 if [ $? -eq 0 ]; then log "Package \"$PKG\" already installed" else log "Installing \"$PKG\"..." yum install $PKG --assumeyes > /dev/null 2>&1 if [ $? -ne 0 ];then log "installation fails, exiting!!!" exit fi fi } # find pip find_pip() { for cmd in $PIPAPPS do _cmd=$(which $cmd 2>/dev/null) if [ $? -eq 0 ];then break fi done if [ -z $_cmd ];then echo "Can't find \"pip\" in system, please install it first, exiting!" exit 1 else PIPCMD=$_cmd fi } # git clone gitclone() { FROM=$1 CLONEROOT=$2 log "Cloning from \"$FROM\" repo to \"$CLONEROOT\"" cd $CLONEROOT && git clone $FROM > /dev/null 2>&1 if [ $? -ne 0 ];then log "cloning from \"$FROM\" fails, exiting!!!" exit fi } # patching horizon configuration modify_horizon_config() { REMOVE=$2 if [ -f $1 ]; then lines=$(sed -ne '/^#START_MURANO_DASHBOARD/,/^#END_MURANO_DASHBOARD/ =' $1) if [ -n "$lines" ]; then if [ ! -z $REMOVE ]; then log "Removing our data from \"$1\"..." sed -e '/^#START_MURANO_DASHBOARD/,/^#END_MURANO_DASHBOARD/ d' -i $1 if [ $? -ne 0 ];then log "Can't modify \"$1\", check permissions or something else, exiting!!!" exit fi else log "\"$1\" already has our data, you can change it manualy and restart apache2 service" fi else if [ -z $REMOVE ];then log "Adding our data into \"$1\"..." cat >> $1 << EOF #START_MURANO_DASHBOARD HORIZON_CONFIG['dashboards'] += ('murano',) INSTALLED_APPS += ('muranodashboard','floppyforms',) MIDDLEWARE_CLASSES += ('muranodashboard.middleware.ExceptionMiddleware',) verbose_formatter = {'verbose': {'format': '[%(asctime)s] [%(levelname)s] [pid=%(process)d] %(message)s'}} if 'formatters' in LOGGING: LOGGING['formatters'].update(verbose_formatter) else: LOGGING['formatters'] = verbose_formatter LOGGING['handlers']['murano-file'] = {'level': 'DEBUG', 'formatter': 'verbose', 'class': 'logging.FileHandler', 'filename': '$LOG_DIR/murano-dashboard.log'} LOGGING['loggers']['muranodashboard'] = {'handlers': ['murano-file'], 'level': 'DEBUG'} LOGGING['loggers']['muranoclient'] = {'handlers': ['murano-file'], 'level': 'ERROR'} #MURANO_API_URL = "http://localhost:8082" #MURANO_METADATA_URL = "http://localhost:8084/v1" #if murano-api set up with ssl uncomment next strings #MURANO_API_INSECURE = True ADVANCED_NETWORKING_CONFIG = {'max_environments': 100, 'max_hosts': 250, 'env_ip_template': '10.0.0.0'} NETWORK_TOPOLOGY = 'routed' #END_MURANO_DASHBOARD EOF if [ $? -ne 0 ];then log "Can't modify \"$1\", check permissions or something else, exiting!!!" fi fi fi else echo "File \"$1\" not found, exiting!!!" exit 1 fi } # searching horizon configuration find_horizon_config() { FOUND=0 for cfg_file in $(echo $HORIZON_CONFIGS | sed 's/,/ /g' ) do if [ -e $cfg_file ];then log "Horizon config found at \"$cfg_file\"" modify_horizon_config $cfg_file $1 FOUND=1 fi done if [ $FOUND -eq 0 ];then log "Horizon config not found or openstack-dashboard does not installed, to override this set proper \"HORIZON_CONFIGS\" variable, exiting!!!" exit 1 fi } # preinstall checks preinst() { # check openstack-dashboard installed from system packages _PKG=openstack-dashboard rpm -q $_PKG > /dev/null 2>&1 if [ $? -ne 0 ]; then log "Package \"$_PKG\" is not installed." fi } # rebuild static rebuildstatic() { horizon_manage=$(rpm -ql openstack-dashboard | grep -E "*manage.py$") if [ $? -ne 0 ]; then log "openstack-dashboard manage.py not found, exiting!!!" exit 1 fi _old_murano_static="$(dirname $horizon_manage)/openstack_dashboard/static/muranodashboard" if [ -d "$_old_murano_static" ];then log "Our static for \"muranodashboard\" found under \"HORIZON\" STATIC, deleting \"$_old_murano_static\"..." rm -rf $_old_murano_static if [ $? -ne 0 ]; then log "Can't delete \"$_old_murano_static\, WARNING!!!" fi fi log "Rebuilding STATIC...." python $horizon_manage collectstatic --noinput if [ $? -ne 0 ]; then log "\"$horizon_manage\" collectstatic failed, exiting!!!" exit 1 fi } # postinstall postinst() { rebuildstatic sleep 2 chown $APACHE_USER:$APACHE_GROUP $LOG_DIR/murano-dashboard.log chown -R $APACHE_USER:$APACHE_GROUP /var/lib/openstack-dashboard service httpd restart } # install inst() { CLONE_FROM_GIT=$1 # Checking packages for PKG in $PREREQ_PKGS do in_sys_pkg $PKG done # Find python pip find_pip preinst # If clone from git set if [ ! -z $CLONE_FROM_GIT ]; then # Preparing clone root directory if [ ! -d $GIT_CLONE_DIR ];then log "Creating $GIT_CLONE_DIR direcory..." mkdir -p $GIT_CLONE_DIR if [ $? -ne 0 ];then log "Can't create $GIT_CLONE_DIR, exiting!!!" exit fi fi # Cloning from GIT GIT_WEBPATH_PRFX="https://github.com/stackforge/" gitclone "$GIT_WEBPATH_PRFX$SERVICE_SRV_NAME.git" $GIT_CLONE_DIR # End clone from git section fi # Setupping... log "Running setup.py" MRN_CND_SPY=$SERVICE_CONTENT_DIRECTORY/setup.py if [ -e $MRN_CND_SPY ]; then chmod +x $MRN_CND_SPY log "$MRN_CND_SPY output:_____________________________________________________________" ## Setup through pip # Creating tarball rm -rf $SERVICE_CONTENT_DIRECTORY/*.egg-info cd $SERVICE_CONTENT_DIRECTORY && python $MRN_CND_SPY egg_info if [ $? -ne 0 ];then log "\"$MRN_CND_SPY\" egg info creation FAILS, exiting!!!" exit 1 fi rm -rf $SERVICE_CONTENT_DIRECTORY/dist cd $SERVICE_CONTENT_DIRECTORY && python $MRN_CND_SPY sdist if [ $? -ne 0 ];then log "\"$MRN_CND_SPY\" tarball creation FAILS, exiting!!!" exit 1 fi # Running tarball install TRBL_FILE=$(basename `ls $SERVICE_CONTENT_DIRECTORY/dist/*.tar.gz`) $PIPCMD install $SERVICE_CONTENT_DIRECTORY/dist/$TRBL_FILE if [ $? -ne 0 ];then log "$PIPCMD install \"$TRBL_FILE\" FAILS, exiting!!!" exit 1 fi # Creating log directory for the murano if [ ! -d $LOG_DIR ];then log "Creating $LOG_DIR direcory..." mkdir -p $LOG_DIR if [ $? -ne 0 ];then log "Can't create $LOG_DIR, exiting!!!" exit 1 fi chmod -R a+rw $LOG_DIR fi else log "$MRN_CND_SPY not found!" fi # add apache to autostart chkconfig --add httpd chkconfig httpd on } # uninstall uninst() { # Uninstall trough pip find_pip # looking up for python package installed PYPKG=`echo $SERVICE_SRV_NAME | tr -d '-'` _pkg=$($PIPCMD freeze | grep $PYPKG) if [ $? -eq 0 ]; then log "Removing package \"$PYPKG\" with pip" $PIPCMD uninstall $_pkg --yes else log "Python package \"$PYPKG\" not found" fi } # Command line args' COMMAND="$1" case $COMMAND in testinstall ) find_horizon_config postinst ;; testuninstall ) find_horizon_config remove postinst ;; install ) inst find_horizon_config postinst ;; installfromgit ) inst "yes" find_horizon_config postinst ;; uninstall ) log "Uninstalling \"$SERVICE_SRV_NAME\" from system..." uninst find_horizon_config remove postinst ;; * ) echo -e "Usage: $(basename "$0") command \nCommands:\n\tinstall - Install $SERVICE_SRV_NAME software\n\tuninstall - Uninstall $SERVICE_SRV_NAME software" exit 1 ;; esac