1 Star 0 Fork 36

stone100/gogs

forked from 无闻/gogs 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
gogs_supervisord.sh 651 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
echo 'plase remember to modify the command path in etc/conf/supervisord.conf(line 23)'
PID="/tmp/supervisord.pid"
CONF="conf/etc/supervisord.conf"
LOGDIR="log"
if [ ! -d $LOGDIR ]; then
mkdir $LOGDIR
fi
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/stone100/gogs.git
git@gitee.com:stone100/gogs.git
stone100
gogs
gogs
master

搜索帮助