Update supervisord.conf
Browse files- supervisord.conf +12 -1
supervisord.conf
CHANGED
|
@@ -34,4 +34,15 @@ stdout_logfile=/dev/stdout
|
|
| 34 |
stdout_logfile_maxbytes=0
|
| 35 |
stderr_logfile=/dev/stderr
|
| 36 |
stderr_logfile_maxbytes=0
|
| 37 |
-
priority=30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
stdout_logfile_maxbytes=0
|
| 35 |
stderr_logfile=/dev/stderr
|
| 36 |
stderr_logfile_maxbytes=0
|
| 37 |
+
priority=30
|
| 38 |
+
|
| 39 |
+
[program:backup-worker]
|
| 40 |
+
command=/bin/bash -lc "exec /usr/local/bin/backup_worker.sh"
|
| 41 |
+
autostart=true
|
| 42 |
+
autorestart=true
|
| 43 |
+
startsecs=5
|
| 44 |
+
stdout_logfile=/dev/stdout
|
| 45 |
+
stdout_logfile_maxbytes=0
|
| 46 |
+
stderr_logfile=/dev/stderr
|
| 47 |
+
stderr_logfile_maxbytes=0
|
| 48 |
+
priority=40
|