- update to supervisor-3.2.0

changelog: http://supervisord.org/changes.html#id1

tested with several nodejs programs
This commit is contained in:
jasper 2015-12-21 19:10:32 +00:00
parent 2a735629ff
commit 4de63cc4c7
4 changed files with 23 additions and 36 deletions

View File

@ -1,9 +1,8 @@
# $OpenBSD: Makefile,v 1.4 2015/09/29 10:52:35 sthen Exp $
# $OpenBSD: Makefile,v 1.5 2015/12/21 19:10:32 jasper Exp $
COMMENT= system to monitor and control processes
MODPY_EGG_VERSION= 3.1.3
REVISION=1
MODPY_EGG_VERSION= 3.2.0
DISTNAME= supervisor-${MODPY_EGG_VERSION}
CATEGORIES= sysutils

View File

@ -1,2 +1,2 @@
SHA256 (supervisor-3.1.3.tar.gz) = 4yxUb+jSpuB57EgZxJ/SRTTUB1pYrzkRjQQ2eRizwoI=
SIZE (supervisor-3.1.3.tar.gz) = 391529
SHA256 (supervisor-3.2.0.tar.gz) = Ui19rZXEsmpEi/OUMKVARUIADBW0WizxiML+BYIZZc4=
SIZE (supervisor-3.2.0.tar.gz) = 409694

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-supervisor_skel_sample_conf,v 1.2 2015/03/15 10:13:48 jasper Exp $
--- supervisor/skel/sample.conf.orig Sun Sep 7 23:04:59 2014
+++ supervisor/skel/sample.conf Fri Mar 13 10:05:41 2015
$OpenBSD: patch-supervisor_skel_sample_conf,v 1.3 2015/12/21 19:10:32 jasper Exp $
--- supervisor/skel/sample.conf.orig Tue Dec 1 04:49:09 2015
+++ supervisor/skel/sample.conf Mon Dec 21 20:02:44 2015
@@ -9,7 +9,7 @@
; - Comments must have a leading space: "a=b ;comment" not "a=b;comment".
@ -33,44 +33,34 @@ $OpenBSD: patch-supervisor_skel_sample_conf,v 1.2 2015/03/15 10:13:48 jasper Exp
;serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket
;username=chris ; should be same as http_username if set
;password=123 ; should be same as http_password if set
@@ -64,8 +64,8 @@ serverurl=unix:///tmp/supervisor.sock ; use a unix://
@@ -64,7 +64,7 @@ serverurl=unix:///tmp/supervisor.sock ; use a unix://
;umask=022 ; umask for process (default None)
;priority=999 ; the relative start priority (default 999)
;autostart=true ; start at supervisord start (default: true)
-;autorestart=unexpected ; whether/when to restart (default: unexpected)
-;startsecs=1 ; number of secs prog must stay running (def. 1)
+;autorestart=true ; retstart at unexpected quit (default: true)
+;startsecs=10 ; number of secs prog must stay running (def. 1)
;startretries=3 ; max # of serial start failures (default 3)
;exitcodes=0,2 ; 'expected' exit codes for process (default 0,2)
;stopsignal=QUIT ; signal used to kill process (default TERM)
@@ -102,14 +102,12 @@ serverurl=unix:///tmp/supervisor.sock ; use a unix://
-;startsecs=1 ; # of secs prog must stay up to be running (def. 1)
+;startsecs=10 ; # of secs prog must stay up to be running (def. 1)
;startretries=3 ; max # of serial start failures when starting (default 3)
;autorestart=unexpected ; when to restart if exited after running (def: unexpected)
;exitcodes=0,2 ; 'expected' exit codes used with autorestart (default 0,2)
@@ -102,7 +102,7 @@ serverurl=unix:///tmp/supervisor.sock ; use a unix://
;umask=022 ; umask for process (default None)
;priority=-1 ; the relative start priority (default -1)
;autostart=true ; start at supervisord start (default: true)
-;autorestart=unexpected ; whether/when to restart (default: unexpected)
-;startsecs=1 ; number of secs prog must stay running (def. 1)
+;autorestart=unexpected ; restart at unexpected quit (default: unexpected)
+;startsecs=10 ; number of secs prog must stay running (def. 1)
;startretries=3 ; max # of serial start failures (default 3)
;exitcodes=0,2 ; 'expected' exit codes for process (default 0,2)
;stopsignal=QUIT ; signal used to kill process (default TERM)
;stopwaitsecs=10 ; max num secs to wait b4 SIGKILL (default 10)
-;stopasgroup=false ; send stop signal to the UNIX process group (default false)
-;killasgroup=false ; SIGKILL the UNIX process group (def false)
;user=chrism ; setuid to this UNIX account to run the program
;redirect_stderr=true ; redirect proc stderr to stdout (default false)
;stdout_logfile=/a/path ; stdout log path, NONE for none; default AUTO
@@ -120,7 +118,7 @@ serverurl=unix:///tmp/supervisor.sock ; use a unix://
-;startsecs=1 ; # of secs prog must stay up to be running (def. 1)
+;startsecs=10 ; # of secs prog must stay up to be running (def. 1)
;startretries=3 ; max # of serial start failures when starting (default 3)
;autorestart=unexpected ; autorestart if exited after running (def: unexpected)
;exitcodes=0,2 ; 'expected' exit codes used with autorestart (default 0,2)
@@ -120,7 +120,7 @@ serverurl=unix:///tmp/supervisor.sock ; use a unix://
;stderr_logfile_maxbytes=1MB ; max # logfile bytes b4 rotation (default 50MB)
;stderr_logfile_backups ; # of stderr logfile backups (default 10)
;stderr_logfile_backups=10 ; # of stderr logfile backups (default 10)
;stderr_events_enabled=false ; emit events on stderr writes (default false)
-;environment=A="1",B="2" ; process environment additions
+;environment=A=1,B=2 ; process environment additions
;serverurl=AUTO ; override serverurl computation (childutils)
; The below sample group section shows all possible group values,
@@ -138,4 +136,4 @@ serverurl=unix:///tmp/supervisor.sock ; use a unix://
@@ -138,4 +138,4 @@ serverurl=unix:///tmp/supervisor.sock ; use a unix://
; include files themselves.
;[include]

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.2 2015/03/15 10:13:48 jasper Exp $
@comment $OpenBSD: PLIST,v 1.3 2015/12/21 19:10:32 jasper Exp $
bin/echo_supervisord_conf
bin/pidproxy
bin/supervisorctl
@ -98,8 +98,6 @@ lib/python${MODPY_VERSION}/site-packages/supervisor/tests/base.py
lib/python${MODPY_VERSION}/site-packages/supervisor/tests/base.pyc
lib/python${MODPY_VERSION}/site-packages/supervisor/tests/fixtures/
lib/python${MODPY_VERSION}/site-packages/supervisor/tests/fixtures/donothing.conf
lib/python${MODPY_VERSION}/site-packages/supervisor/tests/fixtures/fakeos.py
lib/python${MODPY_VERSION}/site-packages/supervisor/tests/fixtures/fakeos.pyc
lib/python${MODPY_VERSION}/site-packages/supervisor/tests/fixtures/spew.py
lib/python${MODPY_VERSION}/site-packages/supervisor/tests/fixtures/spew.pyc
lib/python${MODPY_VERSION}/site-packages/supervisor/tests/fixtures/unkillable_spew.py