-
-
Save c93614/6c6cddb1e4c97f419d29cea5751b61fa to your computer and use it in GitHub Desktop.
supervisord init script for CentOS
This file contains hidden or 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/sh | |
# | |
# Startup script for the Supervisor server | |
# | |
# chkconfig: - 90 10 | |
# description: Supervisor is a client/server system that allows its users to \ | |
# monitor and control a number of processes on UNIX-like \ | |
# operating systems. | |
# | |
# processname: supervisord | |
# config: /etc/supervisor/supervisord.conf | |
# pidfile: /var/run/supervisord.pid | |
# Source function library. | |
. /etc/rc.d/init.d/functions | |
RETVAL=0 | |
SUPERVISORD=/usr/local/bin/supervisord | |
prog=$(basename $SUPERVISORD) | |
PID_FILE=/var/run/supervisord.pid | |
CONFIG_FILE=/etc/supervisor/supervisord.conf | |
start() | |
{ | |
echo -n $"Starting $prog: " | |
$SUPERVISORD --pidfile $PID_FILE --configuration $CONFIG_FILE && success || failure | |
RETVAL=$? | |
echo | |
return $RETVAL | |
} | |
stop() | |
{ | |
echo -n $"Stopping $prog: " | |
killproc -p $PID_FILE -d 10 $SUPERVISORD | |
RETVAL=$? | |
echo | |
} | |
reload() | |
{ | |
echo -n $"Reloading $prog: " | |
if [ -n "`pidfileofproc $SUPERVISORD`" ] ; then | |
killproc $SUPERVISORD -HUP | |
else | |
# Fails if the pid file does not exist BEFORE the reload | |
failure $"Reloading $prog" | |
fi | |
sleep 1 | |
if [ ! -e $PID_FILE ] ; then | |
# Fails if the pid file does not exist AFTER the reload | |
failure $"Reloading $prog" | |
fi | |
RETVAL=$? | |
echo | |
} | |
case "$1" in | |
start) | |
start | |
;; | |
stop) | |
stop | |
;; | |
restart) | |
stop | |
start | |
;; | |
reload) | |
reload | |
;; | |
status) | |
status -p $PID_FILE $SUPERVISORD | |
RETVAL=$? | |
;; | |
*) | |
echo $"Usage: $0 {start|stop|restart|reload|status}" | |
RETVAL=1 | |
esac | |
exit $RETVAL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment