[Checkins] SVN: www.zope.org/trunk/ Hook me up the supervisor

Wichert Akkerman wichert at wiggy.net
Sat Apr 5 11:31:46 EDT 2008


Log message for revision 85118:
  Hook me up the supervisor

Changed:
  U   www.zope.org/trunk/base.cfg
  U   www.zope.org/trunk/buildout.cfg
  A   www.zope.org/trunk/etc/
  A   www.zope.org/trunk/etc/supervisor.conf
  U   www.zope.org/trunk/versions.cfg

-=-
Modified: www.zope.org/trunk/base.cfg
===================================================================
--- www.zope.org/trunk/base.cfg	2008-04-05 15:26:05 UTC (rev 85117)
+++ www.zope.org/trunk/base.cfg	2008-04-05 15:31:45 UTC (rev 85118)
@@ -38,10 +38,6 @@
     ${productdistros:location}
     ${plone:products}
 
-[zopepy]
+[supervisor]
 recipe = zc.recipe.egg
-eggs = ${instance:eggs}
-interpreter = zopepy
-extra-paths = ${zope2:location}/lib/python
-scripts = zopepy
-
+eggs = supervisor

Modified: www.zope.org/trunk/buildout.cfg
===================================================================
--- www.zope.org/trunk/buildout.cfg	2008-04-05 15:26:05 UTC (rev 85117)
+++ www.zope.org/trunk/buildout.cfg	2008-04-05 15:31:45 UTC (rev 85118)
@@ -13,7 +13,7 @@
     productdistros
     zeo
     instance
-    zopepy
+    supervisor
 eggs =
 develop =
     src/zopeorg.deployment

Added: www.zope.org/trunk/etc/supervisor.conf
===================================================================
--- www.zope.org/trunk/etc/supervisor.conf	                        (rev 0)
+++ www.zope.org/trunk/etc/supervisor.conf	2008-04-05 15:31:45 UTC (rev 85118)
@@ -0,0 +1,28 @@
+[unix_http_server]
+file=%(here)/var/supervisor.sock
+chmod=0600
+
+[supervisord]
+logfile=%(here)/var/log/supervisord.log
+logfile_maxbytes=5MB
+logfile_backups=10
+loglevel=info
+pidfile=%(here)/var/supervisord.pid ;
+childlogdir=%(here)/var
+nodaemon=false              ; (start in foreground if true;default false)
+minfds=1024                 ; (min. avail startup file descriptors;default 1024)
+minprocs=200                ; (min. avail process descriptors;default 200)
+directory=%(here)
+
+[program:zeo]
+command = %(here)/bin/zeo fg
+autostart= true
+autorestart = true
+
+[program:zeoclient]
+command = %(here)/bin/instance console
+priority = 2
+redirect_stderr = true
+autostart= true
+autorestart = true
+

Modified: www.zope.org/trunk/versions.cfg
===================================================================
--- www.zope.org/trunk/versions.cfg	2008-04-05 15:26:05 UTC (rev 85117)
+++ www.zope.org/trunk/versions.cfg	2008-04-05 15:31:45 UTC (rev 85118)
@@ -1,5 +1,7 @@
 [versions]
 plone.recipe.plone = 3.1rc1
+plone.recipe.zope2instance = 1.8
+supervisor = 3.0a5
 
 [productdistros]
 recipe = plone.recipe.distros



More information about the Checkins mailing list