From ef2c1df934ee7720fd1ccacae042f3deb3b7628d Mon Sep 17 00:00:00 2001 From: startxfr Date: Mon, 8 Dec 2014 02:35:03 +0100 Subject: adding function and startup script for last services images : memcache, nodejs, ooconv and postresql --- Services/nodejs/sx/nodejs.sh | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 Services/nodejs/sx/nodejs.sh (limited to 'Services/nodejs/sx/nodejs.sh') diff --git a/Services/nodejs/sx/nodejs.sh b/Services/nodejs/sx/nodejs.sh new file mode 100644 index 0000000..fcf3ebb --- /dev/null +++ b/Services/nodejs/sx/nodejs.sh @@ -0,0 +1,40 @@ +#!/bin/bash +export TERM=dumb + +# Begin configuration before starting daemonized process +# and start generating host keys +function begin_config { + echo "=> Begin nodejs configuration for host $HOSTNAME" +} + +# End configuration process just before starting daemon +function end_config { + echo "=> End nodejs configuration ..." +} + +# Start the nodejs server in background. Used to perform config +# against the database structure such as user creation +function start_server { + echo "===> Starting nodejs server ..." + node $MAIN_APP & + sleep 4 +} + +# Stop the nodejs server running in background. +function stop_server { + echo "===> Stopping nodejs server ..." + killall node + sleep 4 +} + +# Start the nodejs server as a deamon and execute it inside +# the running shell +function start_daemon { + echo "=> Starting nodejs daemon ..." + exec node $MAIN_APP +} + + +if [[ "$0" == *"nodejs.sh" && ! $1 = "" ]];then + eval "$@"; +fi \ No newline at end of file -- cgit v1.2.3