This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
wangwei
/
aiforge
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
128
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
add tip to modify the command path, add check the log folder, if not then create it.
tags/v1.2.0-rc1
jack
12 years ago
parent
7ec3f1b2d8
commit
83a10ce880
1 changed files
with
7 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-0
gogs_supervisord.sh
+ 7
- 0
gogs_supervisord.sh
View File
@@ -1,8 +1,15 @@
#!/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`
Write
Preview
Loading…
Cancel
Save