Commit 2879d06e authored by Guillaume Bottex's avatar Guillaume Bottex

Typo and cosmetics.

parent b11197a1
......@@ -45,7 +45,7 @@ class NoSQLTestBed(BaseSlapRecipe):
raise NotImplementedError("Do not support %s" % software_type)
def run_kumo_cloud(self):
""" Deploy kumofs systeom on a cloud. """
""" Deploy kumofs system on a cloud. """
kumo_cloud_config = {}
kumo_cloud_config.update(self.options)
......@@ -96,7 +96,7 @@ class NoSQLTestBed(BaseSlapRecipe):
return [nosqltester_manager_runner_path]
def run_all(self):
""" Runs all services on one machine. """
""" Run all services on one machine. """
all_config = {}
all_config.update(self.options)
......@@ -132,16 +132,12 @@ class NoSQLTestBed(BaseSlapRecipe):
return [manager_runner_path, server_runner_path, gateway_runner_path]
def run_kumo_manager(self, ipaddress=None):
""" Runs the kumofs manager. """
def run_kumo_manager(self):
""" Run the kumofs manager. """
manager_config = {}
manager_config.update(self.options)
if ipaddress is None:
manager_config['manager_address'] = "[%s]" % self.getGlobalIPv6Address()
else:
manager_config['manager_address'] = ipaddress
manager_config['manager_address'] = "[%s]" % self.getGlobalIPv6Address()
manager_config['manager_port'] = 19700
manager_config['manager_log'] = os.path.join(self.log_directory, "kumo-manager.log")
......@@ -159,7 +155,7 @@ class NoSQLTestBed(BaseSlapRecipe):
return [manager_runner_path]
def run_kumo_server(self):
""" Runs the kumofs server. """
""" Run the kumofs server. """
server_config = {}
server_config.update(self.options)
server_config.update(self.parameter_dict)
......@@ -183,7 +179,7 @@ class NoSQLTestBed(BaseSlapRecipe):
return [server_runner_path]
def run_kumo_gateway(self):
""" Runs the kumofs gateway. """
""" Run the kumofs gateway. """
gateway_config = {}
gateway_config.update(self.options)
gateway_config.update(self.parameter_dict)
......@@ -206,7 +202,7 @@ class NoSQLTestBed(BaseSlapRecipe):
return [gateway_runner_path]
def run_kumo_tester(self):
""" Runs the kumofs tester. """
""" Run the kumofs tester. """
tester_config = {}
tester_config.update(self.options)
tester_config.update(self.parameter_dict)
......@@ -236,7 +232,7 @@ class NoSQLTestBed(BaseSlapRecipe):
return [tester_runner_path]
def run_kumo_tester_and_gateway(self):
""" Runs the kumofs tester and gateway on the same partition. """
""" Run the kumofs tester and gateway on the same partition. """
address = self.getGlobalIPv6Address()
config_dict = {}
......@@ -280,7 +276,7 @@ class NoSQLTestBed(BaseSlapRecipe):
return [gateway_runner_path, tester_runner_path]
def run_memstrike_set(self):
""" Runs memstrike in set mode. """
""" Run memstrike in set mode. """
memstrike_config = {}
memstrike_config.update(self.options)
memstrike_config.update(self.parameter_dict)
......
#!/bin/sh
# BEWARE: This file is operated by slapgrid
# BEWARE: It will be overwritten automatically
exec %(gateway_binary)s -F -E -m %(manager_address)s:%(manager_port)s -t %(gateway_address)s:%(gateway_port)s --verbose -o %(gateway_log)s
exec %(gateway_binary)s -F -E -m %(manager_address)s:%(manager_port)s \
-t %(gateway_address)s:%(gateway_port)s --verbose -o %(gateway_log)s
#!/bin/sh
# BEWARE: This file is operated by slapgrid
# BEWARE: It will be overwritten automatically
exec %(manager_binary)s -a -l %(manager_address)s:%(manager_port)s --verbose -o %(manager_log)s
exec %(manager_binary)s -a -l %(manager_address)s:%(manager_port)s \
--verbose -o %(manager_log)s
#!/bin/sh
# BEWARE: This file is operated by slapgrid
# BEWARE: It will be overwritten automatically
exec %(server_binary)s -l %(server_address)s:%(server_port)s -L %(server_listen_port)s -m %(manager_address)s:%(manager_port)s -s %(server_storage)s --verbose -o %(server_log)s
exec %(server_binary)s -l %(server_address)s:%(server_port)s \
-L %(server_listen_port)s -m %(manager_address)s:%(manager_port)s \
-s %(server_storage)s --verbose -o %(server_log)s
#!/bin/sh
# BEWARE: This file is operated by slapgrid
# BEWARE: It will be overwritten automatically
exec %(nosqltester_binary)s -m %(host_address)s -a %(tester_address)s -r %(report_path)s -b "%(binary)s" -l %(log_directory)s -c "%(compress_method)s"
exec %(nosqltester_binary)s -m %(host_address)s -a %(tester_address)s \
-r %(report_path)s -b "%(binary)s" -l %(log_directory)s \
-c "%(compress_method)s"
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