add supervisor support and script, easy to use.

just like ./gogs_supervisord.sh start
./gogs_supervisord.sh stop
./gogs_supervisord.sh restart
and logs all saved tmp folder
This commit is contained in:
jack 2014-05-12 13:20:13 +08:00
parent 68fb62347f
commit 1482bd8fb4
3 changed files with 62 additions and 0 deletions

35
gogs_supervisord.sh Normal file
View file

@ -0,0 +1,35 @@
#!/bin/sh
PID="tmp/supervisord.pid"
CONF="etc/supervisord.conf"
stop() {
if [ -f $PID ]; then
kill `cat -- $PID`
rm -f -- $PID
echo "stopped"
fi
}
start() {
echo "starting"
if [ ! -f $PID ]; then
supervisord -c $CONF
echo "started"
fi
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
*)
echo "Usage: $0 {start|stop|restart}"
esac