Skip to content

Instantly share code, notes, and snippets.

@bartlomiejdanek
Created February 1, 2012 14:54
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bartlomiejdanek/1717400 to your computer and use it in GitHub Desktop.
Save bartlomiejdanek/1717400 to your computer and use it in GitHub Desktop.
/etc/init.d/god
#!/bin/sh
### BEGIN INIT INFO
# Provides: god
# Required-Start: $all
# Required-Stop: $all
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: God
### END INIT INFO
NAME=god
DESC=god
DEAMON=/usr/local/bin/god
PID=/var/run/god/god.pid
LOG=/var/log/god.log
GOD_CONFIG=/etc/god/conf.god
set -e
# Make sure the binary and the config file are present before proceeding
test -x $DEAMON || exit 0
. /lib/lsb/init-functions
RETVAL=0
case "$1" in
start)
echo -n "Starting $DESC: "
$DEAMON -c $GOD_CONFIG -P $PID -l $LOG
RETVAL=$?
echo "$NAME."
;;
stop)
echo -n "Stopping $DESC: "
kill `cat $PID`
RETVAL=$?
echo "$NAME."
;;
restart)
echo -n "Restarting $DESC: "
kill `cat $PID`
$DEAMON -c $GOD_CONFIG -P $PID -l $LOG
RETVAL=$?
echo "$NAME."
;;
status)
$DEAMON 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