[Erp5-report] r45777 luke - /erp5/trunk/utils/slapos.recipe.erp5/src/slapos/recipe/erp5/

nobody at svn.erp5.org nobody at svn.erp5.org
Mon May 2 18:45:15 CEST 2011


Author: luke
Date: Mon May  2 18:45:14 2011
New Revision: 45777

URL: http://svn.erp5.org?rev=45777&view=rev
Log:
Bugfix: Zeo running wrapper have to be unique.

Modified:
    erp5/trunk/utils/slapos.recipe.erp5/src/slapos/recipe/erp5/__init__.py

Modified: erp5/trunk/utils/slapos.recipe.erp5/src/slapos/recipe/erp5/__init__.py
URL: http://svn.erp5.org/erp5/trunk/utils/slapos.recipe.erp5/src/slapos/recipe/erp5/__init__.py?rev=45777&r1=45776&r2=45777&view=diff
==============================================================================
--- erp5/trunk/utils/slapos.recipe.erp5/src/slapos/recipe/erp5/__init__.py [utf8] (original)
+++ erp5/trunk/utils/slapos.recipe.erp5/src/slapos/recipe/erp5/__init__.py [utf8] Mon May  2 18:45:14 2011
@@ -533,8 +533,9 @@ class Recipe(BaseSlapRecipe):
       zeo_conf_path = self.createConfigurationFile('zeo-%s.conf' % zeo_number,
         self.substituteTemplate(self.getTemplateFilename('zeo.conf.in'), config))
       self.path_list.append(zeo_conf_path)
-      wrapper = zc.buildout.easy_install.scripts([('zeo', __name__ + '.execute',
-        'execute')], self.ws, sys.executable, self.wrapper_directory, arguments=[
+      wrapper = zc.buildout.easy_install.scripts([('zeo-%s' % zeo_number,
+        __name__ + '.execute', 'execute')], self.ws, sys.executable,
+        self.wrapper_directory, arguments=[
           self.options['runzeo_binary'].strip(), '-C', zeo_conf_path]
         )[0]
       self.path_list.append(wrapper)



More information about the Erp5-report mailing list