Skip to content

Instantly share code, notes, and snippets.

@olsgreen
Last active August 8, 2016 04:11
Show Gist options
  • Save olsgreen/8122622 to your computer and use it in GitHub Desktop.
Save olsgreen/8122622 to your computer and use it in GitHub Desktop.
#!/bin/sh
#
# /etc/rc.d/init.d/supervisord
#
# Supervisor is a client/server system that
# allows its users to monitor and control a
# number of processes on UNIX-like operating
# systems.
#
# chkconfig: - 64 36
# description: Supervisor Server
# processname: supervisord
# Source init functions
. /etc/rc.d/init.d/functions
prog="supervisord"
prefix="/usr/"
exec_prefix="${prefix}"
prog_bin="${exec_prefix}/bin/supervisord"
PIDFILE="/var/run/$prog.pid"
start()
{
echo -n $"Starting $prog: "
daemon $prog_bin --pidfile $PIDFILE
retval=$?
echo
[ $retval -eq 0 ] && [ -f $PIDFILE ]
return $retval
}
stop()
{
echo -n $"Shutting down $prog: "
[ -f $PIDFILE ] && killproc $prog || success $"$prog shutdown"
echo
}
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status $prog
;;
restart)
stop
start
;;
*)
echo "Usage: $0 {start|stop|restart|status}"
;;
esac
@bfleming-ciena
Copy link

thanks

@Laisky
Copy link

Laisky commented Jan 29, 2016

thanks +1

@zenichanin
Copy link

Is it possible to add a custom config file to this using the supervisor -c flag?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment