mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-27 04:07:08 +00:00
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:
parent
68fb62347f
commit
1482bd8fb4
3 changed files with 62 additions and 0 deletions
35
gogs_supervisord.sh
Normal file
35
gogs_supervisord.sh
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue