From 8c937e2d6333a9de5d7090fb8d40bd0f6086fff3 Mon Sep 17 00:00:00 2001 From: Igor Yozhikov Date: Tue, 21 May 2013 14:04:31 +0400 Subject: [PATCH] Add setup.sh to the murano-conductor project Change-Id: I07aa5fec1d2c7b5d07c23fcf0f35455f2b977fcc --- setup.sh | 199 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 199 insertions(+) create mode 100644 setup.sh diff --git a/setup.sh b/setup.sh new file mode 100644 index 0000000..a3a4b0f --- /dev/null +++ b/setup.sh @@ -0,0 +1,199 @@ +#!/bin/sh +# Install script for murano-conductor daemon +# writen by Igor Yozhikov, provides as-is. +LOGLVL=1 +SERVICE_CONTENT_DIRECTORY=`cd $(dirname "$0") && pwd` +PREREQ_PKGS="wget git python-pip python-dev python-mysqldb" +SERVICE_SRV_NAME="murano-conductor" +GIT_CLONE_DIR=`echo $SERVICE_CONTENT_DIRECTORY | sed -e "s/$SERVICE_SRV_NAME//"` +ETC_CFG_DIR="/etc/$SERVICE_SRV_NAME" +SERVICE_CONFIG_FILE_PATH="$ETC_CFG_DIR/conductor.conf" +#SERVICE_CONFIG_FILE_PATH="/home/stack/murano-conductor/etc/conductor.conf" + +if [ -z "$SERVICE_EXEC_PATH" ];then + SERVICE_EXEC_PATH="/usr/local/bin/conductor" +fi +# Functions +# Loger function +log() +{ + MSG=$1 + if [ $LOGLVL -gt 0 ]; then + echo "LOG:> $MSG" + fi +} + +# Check or install package +in_sys_pkg() +{ + PKG=$1 + dpkg -s $PKG > /dev/null 2>&1 + if [ $? -eq 0 ]; then + log "Package \"$PKG\" already installed" + else + log "Installing \"$PKG\"..." + apt-get install $PKG --yes > /dev/null 2>&1 + if [ $? -ne 0 ];then + log "installation fails, exiting!!!" + exit + fi + 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 +} + + +# install +inst() +{ +CLONE_FROM_GIT=$1 +# Checking packages + for PKG in $PREREQ_PKGS + do + in_sys_pkg $PKG + done + +# If clone from git set + if [ ! -z $CLONE_FROM_GIT ]; then +# Preparing clone root directory + if [ ! -d $GIT_CLONE_DIR ];then + log "Creting $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=$GIT_CLONE_DIR/$SERVICE_SRV_NAME/setup.py + log $MRN_CND_SPY + if [ -e $MRN_CND_SPY ];then + chmod +x $MRN_CND_SPY + log "$MRN_CND_SPY output:_____________________________________________________________" + cd $GIT_CLONE_DIR/$SERVICE_SRV_NAME && $MRN_CND_SPY install + if [ $? -ne 0 ];then + log "Install of \"$MRN_CND_SPY\" FAILS, exiting!!!" + exit + fi + else + log "$MRN_CND_SPY not found!" + fi +# Creating etc directory for config files + if [ ! -d $ETC_CFG_DIR ];then + log "Creting $ETC_CFG_DIR direcory..." + mkdir -p $ETC_CFG_DIR + if [ $? -ne 0 ];then + log "Can't create $ETC_CFG_DIR, exiting!!!" + exit + fi + fi +# making smaple configs + log "Making sample configuration files at \"$ETC_CFG_DIR\"" + for file in `ls $GIT_CLONE_DIR/$SERVICE_SRV_NAME/etc` + do + cp -f "$GIT_CLONE_DIR/$SERVICE_SRV_NAME/etc/$file" "$ETC_CFG_DIR/$file.sample" + done +} + +# inject init +injectinit() +{ +ln -s /lib/init/upstart-job /etc/init.d/$SERVICE_SRV_NAME +echo "description \"Murano Conductor service\" +author \"Igor Yozhikov \" +start on runlevel [2345] +stop on runlevel [!2345] +respawn +exec start-stop-daemon --start --chuid root --user root --name $SERVICE_SRV_NAME --exec $SERVICE_EXEC_PATH -- --config-file=$SERVICE_CONFIG_FILE_PATH" > "/etc/init/$SERVICE_SRV_NAME.conf" +log "Reloading initctl" +initctl reload-configuration +update-rc.d $SERVICE_SRV_NAME defaults + +} + +# purge init +purgeinit() +{ + update-rc.d -f $SERVICE_SRV_NAME remove + rm -f /etc/init.d/$SERVICE_SRV_NAME + rm -f /etc/init/$SERVICE_SRV_NAME.conf + log "Reloading initctl" + initctl reload-configuration +} + +# uninstall +uninst() +{ + rm -f $SERVICE_EXEC_PATH + rm -rf $SERVICE_CONTENT_DIRECTORY +} + +# postinstall +postinst() +{ + log "Please, make proper configugation,located at \"$ETC_CFG_DIR\", before starting the \"$SERVICE_SRV_NAME\" daemon!" +} +# Command line args' +COMMAND="$1" +case $COMMAND in + inject-init ) + # searching for daemon PATH + if [ ! -x $SERVICE_EXEC_PATH ];then + log "Can't find \"conductor\" in at \"$SERVICE_EXEC_PATH\", please install the \"$SERVICE_SRV_NAME\" or set variable SERVICE_EXEC_PATH=/path/to/daemon before running setup script, exiting!!!" + exit + fi + ln -s /lib/init/upstart-job /etc/init.d/$SERVICE_SRV_NAME + log "Injecting \"$SERVICE_SRV_NAME\" to init..." + injectinit + postinst + ;; + + install ) + inst + injectinit + postinst + ;; + + installfromgit ) + inst "yes" + injectinit + postinst + ;; + + purge-init ) + log "Purging \"$SERVICE_SRV_NAME\" from init..." + stop $SERVICE_SRV_NAME + purgeinit + ;; + + uninstall ) + log "Uninstalling \"$SERVICE_SRV_NAME\" from system..." + stop $SERVICE_SRV_NAME + purgeinit + uninst + ;; + + * ) + echo "Usage: $(basename "$0") install | installfromgit | uninstall | inject-init | purge-init" + exit 1 + ;; +esac +