Commit aae69bf6 authored by Łukasz Nowak's avatar Łukasz Nowak

- expose more variables, as test runner installation requires more precise information


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44903 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent e497e00b
...@@ -139,7 +139,9 @@ class Recipe(BaseSlapRecipe): ...@@ -139,7 +139,9 @@ class Recipe(BaseSlapRecipe):
return dict( return dict(
kumo_address = '%s:%s' % (config['kumo_gateway_ip'], kumo_address = '%s:%s' % (config['kumo_gateway_ip'],
config['kumo_gateway_port']) config['kumo_gateway_port']),
kumo_gateway_ip=config['kumo_gateway_ip'],
kumo_gateway_port=config['kumo_gateway_port'],
) )
def installMemcached(self, ip, port): def installMemcached(self, ip, port):
...@@ -152,7 +154,9 @@ class Recipe(BaseSlapRecipe): ...@@ -152,7 +154,9 @@ class Recipe(BaseSlapRecipe):
self.substituteTemplate(self.getTemplateFilename('memcached.in'), self.substituteTemplate(self.getTemplateFilename('memcached.in'),
config))) config)))
return dict(memcached_url='%s:%s' % return dict(memcached_url='%s:%s' %
(config['memcached_ip'], config['memcached_port'])) (config['memcached_ip'], config['memcached_port']),
memcached_ip=config['memcached_ip'],
memcached_port=config['memcached_ip'])
def installTestRunner(self, ca_conf, mysql_conf, conversion_server_conf, def installTestRunner(self, ca_conf, mysql_conf, conversion_server_conf,
memcached_conf, kumo_conf): memcached_conf, kumo_conf):
......
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