Created
December 16, 2009 08:51
-
-
Save anathematic/257689 to your computer and use it in GitHub Desktop.
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
test -f /etc/default/god && . /etc/default/god | |
[ $GOD_CONFIG ] || exit 0 | |
. /lib/lsb/init-functions | |
RETVAL=0 | |
case "$1" in | |
start) | |
echo -n "Starting $DESC: " | |
/usr/bin/god -c $GOD_CONFIG -P /var/run/god.pid -l /var/log/god.log | |
RETVAL=$? | |
echo "$NAME." | |
;; | |
stop) | |
echo -n "Stopping $DESC: " | |
kill `cat /var/run/god.pid` | |
RETVAL=$? | |
echo "$NAME." | |
;; | |
restart) | |
echo -n "Restarting $DESC: " | |
kill `cat /var/run/god.pid` | |
/usr/bin/god -c $GOD_CONFIG -P /var/run/god.pid -l /var/log/god.log | |
RETVAL=$? | |
echo "$NAME." | |
;; | |
status) | |
/usr/bin/god status | |
RETVAL=$? | |
;; | |
*) | |
echo "Usage: god {start|stop|restart|status}" | |
exit 1 | |
;; | |
esac | |
exit $RETVAL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment