From 8d2acbe203d6905c51a28ebe81db7ac90d0df52d Mon Sep 17 00:00:00 2001 From: startxfr Date: Sun, 6 Dec 2015 21:02:28 +0100 Subject: initialize couchbase service container --- Services/couchbase/run.sh | 62 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 Services/couchbase/run.sh (limited to 'Services/couchbase/run.sh') diff --git a/Services/couchbase/run.sh b/Services/couchbase/run.sh new file mode 100644 index 0000000..f853ada --- /dev/null +++ b/Services/couchbase/run.sh @@ -0,0 +1,62 @@ +#!/bin/bash +source /bin/sx-lib.sh + + +function display_container_couchbase_header { + echo "+=====================================================" + echo "| Container : $HOSTNAME" + echo "| OS : $( BEGIN COUCHBASE CONFIGURATION" + if [[ ! -d $LOG_PATH ]]; then + echo "log directory $LOG_PATH not found" + mkdir -p $LOG_PATH; + echo "log directory $LOG_PATH CREATED" + else + echo "log directory $LOG_PATH EXIST" + fi + chmod 0774 $LOG_PATH; +} + +# End configuration process just before starting daemon +function end_config { + echo "=> END COUCHBASE CONFIGURATION" +} + +# Start the couchbase server as a deamon and execute it inside +# the running shell +function start_daemon { + echo "=> Starting couchbase daemon ..." | tee -a $STARTUPLOG + display_container_started | tee -a $STARTUPLOG + exec couchbase -u daemon -v +} + + +if [[ "$0" == *"run.sh" && ! $1 = "" ]];then + eval "$@"; +fi + +check_environment | tee -a $STARTUPLOG +display_container_couchbase_header | tee -a $STARTUPLOG +begin_config | tee -a $STARTUPLOG +end_config | tee -a $STARTUPLOG +start_daemon -- cgit v1.2.3