Commit 21a5b492 authored by Łukasz Nowak's avatar Łukasz Nowak

- be consistent, return dictionairy


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44175 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ba873459
...@@ -371,7 +371,9 @@ class Recipe(BaseSlapRecipe): ...@@ -371,7 +371,9 @@ class Recipe(BaseSlapRecipe):
self.options['runzeo_binary'].strip(), '-C', zeo_conf_path] self.options['runzeo_binary'].strip(), '-C', zeo_conf_path]
)[0] )[0]
self.path_list.append(wrapper) self.path_list.append(wrapper)
return '%s:%s' % (config['zeo_ip'], config['zeo_port']), config['zeo_storagename'] return dict(
zeo_address='%s:%s' % (config['zeo_ip'], config['zeo_port']),
zeo_storagename=config['zeo_storagename'])
def installZope(self, ip, port, name, zeo_address=None, zeo_storagename=None, def installZope(self, ip, port, name, zeo_address=None, zeo_storagename=None,
zodb_root_path=None, with_timerservice=False): zodb_root_path=None, with_timerservice=False):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment