Last active
January 18, 2017 17:39
-
-
Save hectorcorrea/97627bc9758453545b5527350bb11323 to your computer and use it in GitHub Desktop.
A sample init.d script to start a CoffeeScript application through forever. This used to be part of the source code of my hectorcorrea.com repo but since I have deleted the CoffeeScript code this script was lost. This gist is to preserve it for posterity since it is referenced in a StackOverflow question.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# initd-example Node init.d | |
# | |
# chkconfig: 345 | |
# description: Script to start a coffee script application through forever | |
# processname: forever/coffeescript/node | |
# pidfile: /var/run/forever-initd-hectorcorrea.pid | |
# logfile: /var/run/forever-initd-hectorcorrea.log | |
# | |
# Based on a script posted by https://gist.github.com/jinze at https://gist.github.com/3748766 | |
# | |
# Source function library. | |
. /lib/lsb/init-functions | |
pidFile=/var/run/forever-initd-hectorcorrea.pid | |
logFile=/var/run/forever-initd-hectorcorrea.log | |
sourceDir=/home/hectorlinux/website | |
coffeeFile=app.coffee | |
scriptId=$sourceDir/$coffeeFile | |
start() { | |
echo "Starting $scriptId" | |
# This is found in the library referenced at the top of the script | |
start_daemon | |
# Start our CoffeeScript app through forever | |
# Notice that we change the PATH because on reboot | |
# the PATH does not include the path to node. | |
# Launching forever or coffee with a full path | |
# does not work unless we set the PATH. | |
cd $sourceDir | |
PATH=/usr/local/bin:$PATH | |
NODE_ENV=production PORT=80 forever start --pidFile $pidFile -l $logFile -a -d --sourceDir $sourceDir/ -c coffee $coffeeFile | |
RETVAL=$? | |
} | |
restart() { | |
echo -n "Restarting $scriptId" | |
/usr/local/bin/forever restart $scriptId | |
RETVAL=$? | |
} | |
stop() { | |
echo -n "Shutting down $scriptId" | |
/usr/local/bin/forever stop $scriptId | |
RETVAL=$? | |
} | |
status() { | |
echo -n "Status $scriptId" | |
/usr/local/bin/forever list | |
RETVAL=$? | |
} | |
case "$1" in | |
start) | |
start | |
;; | |
stop) | |
stop | |
;; | |
status) | |
status | |
;; | |
restart) | |
restart | |
;; | |
*) | |
echo "Usage: {start|stop|status|restart}" | |
exit 1 | |
;; | |
esac | |
exit $RETVAL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment